Automated Checksum Verification

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

Apa itu Automated Checksum Verification?

Automated Checksum Verification adalah ekstensi Chrome yang dikembangkan oleh ISPLab @ UNIL, dan fitur utamanya adalah "Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Automated Checksum Verification

Unduh file ekstensi Automated Checksum Verification dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Automated Checksum Verification Automated Checksum Verification
ID kabghagbpkdbojdeklmcbfamenmpilga
URL Resmi https://chromewebstore.google.com/detail/automated-checksum-verifi/kabghagbpkdbojdeklmcbfamenmpilga
Deskripsi Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.
Ukuran File 4.61 MB
Jumlah Instalasi 135
Versi Saat Ini 0.3
Terakhir Diperbarui 2019-06-30
Tanggal Publikasi 2019-06-26
Pengembang ISPLab @ UNIL
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://people.unil.ch/kevinhuguenin/research/projects/
Bahasa yang Didukung 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\/*"
    ]
}