Save tabs as HTML

Save list of open tabs as an HTML file.

Cos'è Save tabs as HTML?

Save tabs as HTML è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Save list of open tabs as an HTML file.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Save tabs as HTML

Scarica i file di estensione Save tabs 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

                        This addon generates an HTML file containing links pointing to the tabs open in all windows.

The file includes the title and URL of each tab, as well as the browser user agent and the date and time the file was saved. This can be useful as an ad-hoc way to save a browser session.

Unlike similar addons that save to a text file, this extension saves the open tabs as HTML, which can be re-opened in the browser later and the URLs re-opened with a click.

This addon does not store or archive the pages themselves. It only saves the URL and title of the page.

Incognito tabs are excluded.                    

Informazioni di Base sull'Estensione

Nome Save tabs as HTML Save tabs as HTML
ID dmnhgbenglfffoaodbgpfoihfnbdbfcb
URL Ufficiale https://chromewebstore.google.com/detail/save-tabs-as-html/dmnhgbenglfffoaodbgpfoihfnbdbfcb
Descrizione Save list of open tabs as an HTML file.
Dimensione del File 12.13 KB
Conteggio Installazioni 640
Versione Corrente 0.3.2
Ultimo Aggiornamento 2021-11-30
Data di Pubblicazione 2021-11-12
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Unknown
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nbeaver/save-tabs-as-html
URL della Pagina di Aiuto https://github.com/nbeaver/save-tabs-as-html/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save tabs as HTML",
    "description": "Save list of open tabs as an HTML file.",
    "manifest_version": 2,
    "version": "0.3.2",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "downloads"
    ],
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Save tabs as HTML."
    },
    "background": {
        "scripts": [
            "save_tabs.js"
        ]
    }
}