Check Face

Putting a face to a name.

Was ist Check Face?

Check Face ist eine Chrome-Erweiterung, die von checkface.ml entwickelt wurde, und ihr Hauptmerkmal ist "Putting a face to a name.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Check Face-Erweiterungs-CRX-Datei herunterladen

Laden Sie Check Face-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Check Face Check Face
ID pbfneacmjmcjdbeonggmoanjpaklahfk
Offizielle URL https://chromewebstore.google.com/detail/check-face/pbfneacmjmcjdbeonggmoanjpaklahfk
Beschreibung Putting a face to a name.
Dateigröße 198 KB
Installationsanzahl 889
Aktuelle Version 1.4
Letztes Update 2021-05-05
Veröffentlichungsdatum 2019-08-22
Entwickler checkface.ml
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://checkface.facemorph.me
Hilfeseite URL https://github.com/check-face/checkface
Unterstützte Sprachen 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"
    }
}