Check Face

Putting a face to a name.

Check Face là gì?

Check Face là một tiện ích mở rộng Chrome được phát triển bởi checkface.ml, và tính năng chính của nó là "Putting a face to a name.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Check Face

Tải xuống các tệp mở rộng Check Face dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Check Face Check Face
ID pbfneacmjmcjdbeonggmoanjpaklahfk
URL Chính Thức https://chromewebstore.google.com/detail/check-face/pbfneacmjmcjdbeonggmoanjpaklahfk
Mô tả Putting a face to a name.
Kích Thước Tệp 198 KB
Số Lần Cài Đặt 889
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2021-05-05
Ngày Phát Hành 2019-08-22
Nhà Phát Triển checkface.ml
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://checkface.facemorph.me
URL Trang Trợ Giúp https://github.com/check-face/checkface
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}