Check Face

Putting a face to a name.

Check Face란 무엇입니까?

Check Face은(는) checkface.ml에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Putting a face to a name."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Check Face 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        CheckFace allows you to generate a recognisable face using hashes and git commit sha.
Using StyleGan, a unique face can be generated for any input.

This extension adds a context menu item so that you can select text, such as a download's checksum, and generate a face.
It also adds a face next to any git commit sha on hover.

Click on the extension icon to view the checkface for the origin of the current tab. This can be used to ensure that the origin is correct, for example to help detect an IDN homograph attack.

Visit checkface.ml to give it a try!                    

확장 프로그램 기본 정보

이름 Check Face Check Face
ID pbfneacmjmcjdbeonggmoanjpaklahfk
공식 URL https://chromewebstore.google.com/detail/check-face/pbfneacmjmcjdbeonggmoanjpaklahfk
설명 Putting a face to a name.
파일 크기 198 KB
설치 횟수 889
현재 버전 1.4
최근 업데이트 2021-05-05
출시 날짜 2019-08-22
개발자 checkface.ml
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://checkface.facemorph.me
도움말 페이지 URL https://github.com/check-face/checkface
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Check Face",
    "description": "Putting a face to a name.",
    "version": "1.4",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "static\/css\/styles.css"
            ],
            "js": [
                "static\/js\/jquery-2.2.4.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js",
            "hot-reload.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "view checkface for this origin"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "icons": {
        "128": "static\/images\/checkface-icon.png",
        "16": "static\/images\/checkface-icon16.png",
        "48": "static\/images\/checkface-icon48.png"
    }
}