Check Face

Putting a face to a name.

Cos'è Check Face?

Check Face è un'estensione di Chrome sviluppata da checkface.ml, e la sua funzione principale è "Putting a face to a name.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Check Face

Scarica i file di estensione Check Face in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Check Face Check Face
ID pbfneacmjmcjdbeonggmoanjpaklahfk
URL Ufficiale https://chromewebstore.google.com/detail/check-face/pbfneacmjmcjdbeonggmoanjpaklahfk
Descrizione Putting a face to a name.
Dimensione del File 198 KB
Conteggio Installazioni 889
Versione Corrente 1.4
Ultimo Aggiornamento 2021-05-05
Data di Pubblicazione 2019-08-22
Sviluppatore checkface.ml
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://checkface.facemorph.me
URL della Pagina di Aiuto https://github.com/check-face/checkface
Lingue Supportate 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"
    }
}