Automated Checksum Verification
Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Co to jest Automated Checksum Verification?
Automated Checksum Verification to rozszerzenie Chrome opracowane przez ISPLab @ UNIL, a jego główną funkcją jest „Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Automated Checksum Verification
Pobierz pliki rozszerzeń Automated Checksum Verification w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | kabghagbpkdbojdeklmcbfamenmpilga |
Oficjalny URL | https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga |
Opis | Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files. |
Rozmiar pliku | 4.61 MB |
Liczba instalacji | 135 |
Aktualna Wersja | 0.3 |
Ostatnia Aktualizacja | 2019-06-30 |
Data Publikacji | 2019-06-26 |
Deweloper | ISPLab @ UNIL |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://people.unil.ch/kevinhuguenin/research/projects/ |
Obsługiwane Języki | 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\/*" ] } |