Automated Checksum Verification
Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Что такое Automated Checksum Verification?
Automated Checksum Verification - это расширение Chrome, разработанное ISPLab @ UNIL, и его основная функция - "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".
Снимки экрана расширения
Скачать файл CRX расширения Automated Checksum Verification
Скачайте файлы расширений 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 |
| Официальный URL | 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\/*"
]
} | |