Save Page State

Chrome extension to save a state of a page for remote analysis

What is Save Page State?

Save Page State is a Chrome extension developed by Wing Leung, and its main feature is "Chrome extension to save a state of a page for remote analysis".

Extension Screenshots

screenshot

Download Save Page State Extension CRX File

Download Save Page State extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Save Page State Save Page State
ID aokllhajmkihfihciggkmpgdhgecgaic
Official URL https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic
Description Chrome extension to save a state of a page for remote analysis
File Size 52.27 KB
Installation Count 241
Current Version 1.0.1
Last Updated 2018-12-17
Publish Date 2018-12-12
Rating 1.00/5 Total 2 Ratings
Developer Wing Leung
Email [email protected]
Payment Type free
Extension Website https://github.com/vrtdev/save-page-state
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Page State",
    "version": "1.0.1",
    "description": "Chrome extension to save a state of a page for remote analysis",
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "pageCapture",
        "*:\/\/*\/*"
    ]
}