Automated Checksum Verification
Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
¿Qué es Automated Checksum Verification?
Automated Checksum Verification es una extensión de Chrome desarrollada por ISPLab @ UNIL, y su función principal es "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Automated Checksum Verification
Descarga archivos de extensión Automated Checksum Verification en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | kabghagbpkdbojdeklmcbfamenmpilga |
URL Oficial | https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga |
Descripción | Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files. |
Tamaño del Archivo | 4.61 MB |
Cantidad de Instalaciones | 135 |
Versión Actual | 0.3 |
Última Actualización | 2019-06-30 |
Fecha de Publicación | 2019-06-26 |
Desarrollador | ISPLab @ UNIL |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://people.unil.ch/kevinhuguenin/research/projects/ |
Idiomas Soportados | 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\/*" ] } |