Check Face

Putting a face to a name.

Wat is Check Face?

Check Face is een Chrome-extensie ontwikkeld door checkface.ml, en de belangrijkste functie is "Putting a face to a name.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Check Face

Download Check Face-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Check Face Check Face
ID pbfneacmjmcjdbeonggmoanjpaklahfk
Officiële URL https://chromewebstore.google.com/detail/check-face/pbfneacmjmcjdbeonggmoanjpaklahfk
Beschrijving Putting a face to a name.
Bestandsgrootte 198 KB
Aantal Installaties 889
Huidige Versie 1.4
Laatst Bijgewerkt 2021-05-05
Publicatiedatum 2019-08-22
Ontwikkelaar checkface.ml
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://checkface.facemorph.me
Help Pagina-URL https://github.com/check-face/checkface
Ondersteunde Talen 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"
    }
}