Automated Checksum Verification
Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
什麼是Automated Checksum Verification?
Automated Checksum Verification是由ISPLab @ UNIL開發的Chrome擴展程式,該擴展的主要功能是“Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.”。
擴展截圖
下載Automated Checksum Verification擴展crx文件
下載Automated Checksum Verification擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | kabghagbpkdbojdeklmcbfamenmpilga |
官方網址 | https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga |
簡介 | Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files. |
檔案大小 | 4.61 MB |
安裝次數 | 135 |
目前版本 | 0.3 |
更新時間 | 2019-06-30 |
上架時間 | 2019-06-26 |
開發者 | ISPLab @ UNIL |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://people.unil.ch/kevinhuguenin/research/projects/ |
支援的語言 | 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\/*" ] } |