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ファイルをダウンロード

Check Face拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}