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\/*" ] } |