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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } |