Snapshot as HTML

A chrome extension save webpage snapshot as html

What is Snapshot as HTML?

Snapshot as HTML is a Chrome extension developed by fool2fish, and its main feature is "A chrome extension save webpage snapshot as html".

Extension Screenshots

screenshot

Download Snapshot as HTML Extension CRX File

Download Snapshot as HTML 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

                        ### How it works?
1. grab the rendered webpage code
2. remove all scripts
3. remove all iframe srcs
4. normalize all urls                    

Extension Basic Information

Name Snapshot as HTML Snapshot as HTML
ID cpfdkhlkcocjbmjmmoocffkkhiolhbkf
Official URL https://chrome.google.com/webstore/detail/snapshot-as-html/cpfdkhlkcocjbmjmmoocffkkhiolhbkf
Description A chrome extension save webpage snapshot as html
File Size 85.78 KB
Installation Count 145
Current Version 0.0.1
Last Updated 2018-11-06
Publish Date 2018-11-04
Rating 3.50/5 Total 2 Ratings
Developer fool2fish
Payment Type free
Extension Website https://github.com/fool2fish/snapshot-as-html
Help Page URL https://github.com/fool2fish/snapshot-as-html/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snapshot as HTML",
    "description": "A chrome extension save webpage snapshot as html",
    "version": "0.0.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "",
        "activeTab"
    ],
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}