Automated Checksum Verification

Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.

O que é Automated Checksum Verification?

Automated Checksum Verification é uma extensão do Chrome desenvolvida por ISPLab @ UNIL, e sua principal característica é "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Automated Checksum Verification

Baixe arquivos de extensão Automated Checksum Verification 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

                        This extension offers an automated checksum verification that alerts users when there is a potential mismatch between the checksum computed from the downloaded file and that (or those) available on the website triggering the download.                    

Informações Básicas da Extensão

Nome Automated Checksum Verification Automated Checksum Verification
ID kabghagbpkdbojdeklmcbfamenmpilga
URL Oficial https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga
Descrição Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Tamanho do Arquivo 4.61 MB
Contagem de Instalações 135
Versão Atual 0.3
Última Atualização 2019-06-30
Data de Publicação 2019-06-26
Desenvolvedor ISPLab @ UNIL
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://people.unil.ch/kevinhuguenin/research/projects/
Idiomas Suportados en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.3",
    "manifest_version": 2,
    "description": "__MSG_extDesc__",
    "icons": {
        "16": "icons\/icon16.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "scripts\/md5.js",
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "css\/style.css",
                "css\/fontawesome-all.css"
            ]
        }
    ],
    "default_locale": "en",
    "permissions": [
        "alarms",
        "downloads",
        "tabs",
        "downloads.open",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*"
    ],
    "web_accessible_resources": [
        "css\/*",
        "scripts\/*",
        "webfonts\/*",
        "icons\/*"
    ]
}