Dead Link

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

O que é Dead Link?

Dead Link é uma extensão do Chrome desenvolvida por bthdonohue, e sua principal característica é "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org".

Baixar o arquivo CRX da Extensão Dead Link

Baixe arquivos de extensão Dead Link no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Dead Link Dead Link
ID cbhijdjkncfjjiodgafikkafnnmicnna
URL Oficial https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna
Descrição Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Tamanho do Arquivo 392 KB
Contagem de Instalações 59
Versão Atual 1
Última Atualização 2016-02-22
Data de Publicação 2016-02-22
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor bthdonohue
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}