Automated Checksum Verification

Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.

Automated Checksum Verification là gì?

Automated Checksum Verification là một tiện ích mở rộng Chrome được phát triển bởi ISPLab @ UNIL, và tính năng chính của nó là "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Automated Checksum Verification

Tải xuống các tệp mở rộng Automated Checksum Verification dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Automated Checksum Verification Automated Checksum Verification
ID kabghagbpkdbojdeklmcbfamenmpilga
URL Chính Thức https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga
Mô tả Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Kích Thước Tệp 4.61 MB
Số Lần Cài Đặt 135
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2019-06-30
Ngày Phát Hành 2019-06-26
Nhà Phát Triển ISPLab @ UNIL
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://people.unil.ch/kevinhuguenin/research/projects/
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}