Skip to content

A chrome extension to save the state of a page for further analysis

License

Notifications You must be signed in to change notification settings

wingleung/save-page-state

Repository files navigation



Save Page State

Save Page State



A browser extension to save the state of a page for further analysis

Chrome Web StoreSoftware License

Highlights

Install

Install the extension from the chrome web store or firefox add-ons.

Or create a custom extension with this repo with limited access permission

Customize

Restrict Access Permission

In manifest.json (/src/manifest.json), replace <all_urls> with your own project URL pattern you wish to save the page states from.

{ ... "content_scripts": [{"matches": ["<all_urls>"],// <- change this to your url pattern"js": ["js/content.js"]}],"permissions": ["activeTab","pageCapture","<all_urls>"]// <- change this to your url pattern...}

Install dependencies

npm i 

Build

npm run build 

Builds to /build/prod

Publish

Chrome

Create a zip file from /build/prod/chromeupload it to the chrome web store.

Firefox

Create a zip file from /build/prod/firefoxupload it to the firefox developer hub.

Development

npm run dev:chrome // builds to /build/dev/chrome npm run dev:firefox // builds to /build/dev/firefox 

Features

DOM Snapshot

An HTML file containing the state of the DOM.

MHTML file (chrome only for now)

Note Firefox doesn't support saving an MHTML file natively yet.

An MHTML page with encapsulated resources, so you could immediately check the layout by opening the MHTML file in Chrome.

Screenshot

A PNG image of the viewport.

Metadata

Text file with extra metadata useful for debugging with the exact same state.

  • height: viewport height
  • width: viewport width
  • incognito: is page loaded in incognito mode
  • status: page loading status
  • title: page title
  • url: page URL
  • browser: browser
  • browserVersion: browser version
  • os: operating system

Maintainer

Wing Leung

About

A chrome extension to save the state of a page for further analysis

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published