Automated Checksum Verification

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

Vad är Automated Checksum Verification?

Automated Checksum Verification är en Chrome-tillägg utvecklad av ISPLab @ UNIL, och dess huvudfunktion är "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".

Tilläggsskärmbilder

screenshot

Ladda ner Automated Checksum Verification-förlängningens CRX-fil

Ladda ner Automated Checksum Verification-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

                        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.                    

Grundläggande Information om Tillägg

Namn Automated Checksum Verification Automated Checksum Verification
ID kabghagbpkdbojdeklmcbfamenmpilga
Officiell webbadress https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga
Beskrivning Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Filstorlek 4.61 MB
Antal Installationer 135
Aktuell Version 0.3
Senast Uppdaterad 2019-06-30
Publiceringsdatum 2019-06-26
Utvecklare ISPLab @ UNIL
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://people.unil.ch/kevinhuguenin/research/projects/
Stödda Språk 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\/*"
    ]
}