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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 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
이메일 [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\/*"
    ]
}