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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}