Snapshot as HTML

A chrome extension save webpage snapshot as html

Cos'è Snapshot as HTML?

Snapshot as HTML è un'estensione di Chrome sviluppata da fool2fish, e la sua funzione principale è "A chrome extension save webpage snapshot as html".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Snapshot as HTML

Scarica i file di estensione Snapshot as HTML in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Snapshot as HTML Snapshot as HTML
ID cpfdkhlkcocjbmjmmoocffkkhiolhbkf
URL Ufficiale https://chrome.google.com/webstore/detail/snapshot-as-html/cpfdkhlkcocjbmjmmoocffkkhiolhbkf
Descrizione A chrome extension save webpage snapshot as html
Dimensione del File 85.78 KB
Conteggio Installazioni 145
Versione Corrente 0.0.1
Ultimo Aggiornamento 2018-11-06
Data di Pubblicazione 2018-11-04
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore fool2fish
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/fool2fish/snapshot-as-html
URL della Pagina di Aiuto https://github.com/fool2fish/snapshot-as-html/issues
Lingue Supportate 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"
            ]
        }
    ]
}