Automated Checksum Verification

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

Automated Checksum Verificationとは何ですか?

Automated Checksum VerificationはISPLab @ UNILによって開発されたChromeの拡張機能で、その主な機能は「Automated Checksum Verification is an extension made to ensure the integrity of potentially dangerous files.」です。

拡張機能のスクリーンショット

screenshot

Automated Checksum Verification拡張機能のCRXファイルをダウンロード

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.                    

拡張機能の基本情報

名前 Automated Checksum Verification Automated Checksum Verification
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
Eメール [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\/*"
    ]
}