Automated Checksum Verification

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

Wat is Automated Checksum Verification?

Automated Checksum Verification is een Chrome-extensie ontwikkeld door ISPLab @ UNIL, en de belangrijkste functie is "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Automated Checksum Verification

Download Automated Checksum Verification-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Automated Checksum Verification Automated Checksum Verification
ID kabghagbpkdbojdeklmcbfamenmpilga
Officiële URL https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga
Beschrijving Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Bestandsgrootte 4.61 MB
Aantal Installaties 135
Huidige Versie 0.3
Laatst Bijgewerkt 2019-06-30
Publicatiedatum 2019-06-26
Ontwikkelaar ISPLab @ UNIL
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://people.unil.ch/kevinhuguenin/research/projects/
Ondersteunde Talen 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\/*"
    ]
}