Automated Checksum Verification
Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Qu'est-ce que Automated Checksum Verification ?
Automated Checksum Verification est une extension Chrome développée par ISPLab @ UNIL, et sa fonction principale est "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Automated Checksum Verification
Téléchargez les fichiers d'extension Automated Checksum Verification au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | kabghagbpkdbojdeklmcbfamenmpilga |
URL Officiel | https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga |
Description | Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files. |
Taille du Fichier | 4.61 MB |
Nombre d'Installations | 135 |
Version Actuelle | 0.3 |
Dernière Mise à Jour | 2019-06-30 |
Date de Publication | 2019-06-26 |
Développeur | ISPLab @ UNIL |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://people.unil.ch/kevinhuguenin/research/projects/ |
Langues Prises en Charge | 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\/*" ] } |