Automated Checksum Verification

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

Cos'è Automated Checksum Verification?

Automated Checksum Verification è un'estensione di Chrome sviluppata da ISPLab @ UNIL, e la sua funzione principale è "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Automated Checksum Verification

Scarica i file di estensione Automated Checksum Verification 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 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.                    

Informazioni di Base sull'Estensione

Nome Automated Checksum Verification Automated Checksum Verification
ID kabghagbpkdbojdeklmcbfamenmpilga
URL Ufficiale https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga
Descrizione Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Dimensione del File 4.61 MB
Conteggio Installazioni 135
Versione Corrente 0.3
Ultimo Aggiornamento 2019-06-30
Data di Pubblicazione 2019-06-26
Sviluppatore ISPLab @ UNIL
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://people.unil.ch/kevinhuguenin/research/projects/
Lingue Supportate 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\/*"
    ]
}