Dead Link

Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org

Cos'è Dead Link?

Dead Link è un'estensione di Chrome sviluppata da bthdonohue, e la sua funzione principale è "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org".

Scarica il file CRX dell'estensione Dead Link

Scarica i file di estensione Dead Link 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

                        Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org                    

Informazioni di Base sull'Estensione

Nome Dead Link Dead Link
ID cbhijdjkncfjjiodgafikkafnnmicnna
URL Ufficiale https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna
Descrizione Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Dimensione del File 392 KB
Conteggio Installazioni 59
Versione Corrente 1
Ultimo Aggiornamento 2016-02-22
Data di Pubblicazione 2016-02-22
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore bthdonohue
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dead Link",
    "description": "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org",
    "version": "1",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "deadlink.js"
            ],
            "css": [
                "deadlink.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "*.gif"
    ]
}