Snapshot as HTML

A chrome extension save webpage snapshot as html

什么是Snapshot as HTML?

Snapshot as HTML是由fool2fish开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension save webpage snapshot as html”。

扩展截图

screenshot

下载Snapshot as HTML扩展crx文件

下载Snapshot as HTML扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Snapshot as HTML Snapshot as HTML
ID cpfdkhlkcocjbmjmmoocffkkhiolhbkf
官方URL https://chrome.google.com/webstore/detail/snapshot-as-html/cpfdkhlkcocjbmjmmoocffkkhiolhbkf
简介 A chrome extension save webpage snapshot as html
文件大小 85.78 KB
安装次数 145
当前版本 0.0.1
更新时间 2018-11-06
上架时间 2018-11-04
评分 3.50/5 共2次评分
开发者 fool2fish
付费类型 free
扩展官网 https://github.com/fool2fish/snapshot-as-html
帮助页面URL https://github.com/fool2fish/snapshot-as-html/issues
支持的语言 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"
            ]
        }
    ]
}