Wayback Machine Auto-Archiver

Automatically Archive Pages.

Cos'è Wayback Machine Auto-Archiver?

Wayback Machine Auto-Archiver è un'estensione di Chrome sviluppata da jacobkotrla, e la sua funzione principale è "Automatically Archive Pages.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Wayback Machine Auto-Archiver

Scarica i file di estensione Wayback Machine Auto-Archiver 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 is the app I made for the Congressional App Challenge 2018. It automatically archives every webpage you visit using the Wayback Machine by the Internet Archive.

In order archive web pages, the extension needs to see which pages you visit, which enables it to log your browsing history. These URLs are only sent to the Internet Archive for archival, and the Internet Archive may log your IP address.

The icon that displays in the toolbar once the extension is installed is from http://freeicons.io/                    

Informazioni di Base sull'Estensione

Nome Wayback Machine Auto-Archiver Wayback Machine Auto-Archiver
ID klnimjpfkfcfdllnbmmhjjomcmciepkk
URL Ufficiale https://chromewebstore.google.com/detail/wayback-machine-auto-arch/klnimjpfkfcfdllnbmmhjjomcmciepkk
Descrizione Automatically Archive Pages.
Dimensione del File 34.71 KB
Conteggio Installazioni 1,190
Versione Corrente 0.3.3
Ultimo Aggiornamento 2022-07-24
Data di Pubblicazione 2018-10-17
Valutazione 4.11/5 Totale 19 Valutazioni
Sviluppatore jacobkotrla
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://sites.google.com/view/jacobkotrla/chrome-store-privacy-policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wayback Machine Auto-Archiver",
    "version": "0.3.3",
    "description": "Automatically Archive Pages.",
    "permissions": [
        "https:\/\/web.archive.org\/*",
        "tabs"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}