Automated Checksum Verification
Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Hvad er Automated Checksum Verification?
Automated Checksum Verification er en Chrome-udvidelse udviklet af ISPLab @ UNIL, og dens hovedfunktion er "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".
Udvidelsesskærmbilleder
Download Automated Checksum Verification-udvidelses-CRX-fil
Download Automated Checksum Verification-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | |
ID | kabghagbpkdbojdeklmcbfamenmpilga |
Officiel URL | https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga |
Beskrivelse | Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files. |
Filstørrelse | 4.61 MB |
Antal Installationer | 135 |
Nuværende Version | 0.3 |
Senest Opdateret | 2019-06-30 |
Udgivelsesdato | 2019-06-26 |
Udvikler | ISPLab @ UNIL |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://people.unil.ch/kevinhuguenin/research/projects/ |
Understøttede Sprog | 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\/*" ] } |