Snapshot as HTML

A chrome extension save webpage snapshot as html

Wat is Snapshot as HTML?

Snapshot as HTML is een Chrome-extensie ontwikkeld door fool2fish, en de belangrijkste functie is "A chrome extension save webpage snapshot as html".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Snapshot as HTML

Download Snapshot as HTML-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Snapshot as HTML Snapshot as HTML
ID cpfdkhlkcocjbmjmmoocffkkhiolhbkf
Officiële URL https://chrome.google.com/webstore/detail/snapshot-as-html/cpfdkhlkcocjbmjmmoocffkkhiolhbkf
Beschrijving A chrome extension save webpage snapshot as html
Bestandsgrootte 85.78 KB
Aantal Installaties 145
Huidige Versie 0.0.1
Laatst Bijgewerkt 2018-11-06
Publicatiedatum 2018-11-04
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar fool2fish
Betalingswijze free
Extensiewebsite https://github.com/fool2fish/snapshot-as-html
Help Pagina-URL https://github.com/fool2fish/snapshot-as-html/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}