Automated Checksum Verification

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

Was ist Automated Checksum Verification?

Automated Checksum Verification ist eine Chrome-Erweiterung, die von ISPLab @ UNIL entwickelt wurde, und ihr Hauptmerkmal ist "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".

Erweiterungsscreenshots

screenshot

Automated Checksum Verification-Erweiterungs-CRX-Datei herunterladen

Laden Sie Automated Checksum Verification-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Automated Checksum Verification Automated Checksum Verification
ID kabghagbpkdbojdeklmcbfamenmpilga
Offizielle URL https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga
Beschreibung Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Dateigröße 4.61 MB
Installationsanzahl 135
Aktuelle Version 0.3
Letztes Update 2019-06-30
Veröffentlichungsdatum 2019-06-26
Entwickler ISPLab @ UNIL
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://people.unil.ch/kevinhuguenin/research/projects/
Unterstützte Sprachen 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\/*"
    ]
}