Check Face

Putting a face to a name.

Что такое Check Face?

Check Face - это расширение Chrome, разработанное checkface.ml, и его основная функция - "Putting a face to a name.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Check Face

Скачайте файлы расширений 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
Электронная почта [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"
    }
}