Dead Link

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

Vad är Dead Link?

Dead Link är en Chrome-tillägg utvecklad av bthdonohue, och dess huvudfunktion är "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org".

Ladda ner Dead Link-förlängningens CRX-fil

Ladda ner Dead Link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Dead Link Dead Link
ID cbhijdjkncfjjiodgafikkafnnmicnna
Officiell webbadress https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna
Beskrivning Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Filstorlek 392 KB
Antal Installationer 59
Aktuell Version 1
Senast Uppdaterad 2016-02-22
Publiceringsdatum 2016-02-22
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare bthdonohue
Betalningssätt free
Stödda Språk 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"
    ]
}