SuperDog Extension for Authentication

Send a message to a native application for authentication.

Was ist SuperDog Extension for Authentication?

SuperDog Extension for Authentication ist eine Chrome-Erweiterung, die von SuperDog Team entwickelt wurde, und ihr Hauptmerkmal ist "Send a message to a native application for authentication.".

Erweiterungsscreenshots

screenshot

SuperDog Extension for Authentication-Erweiterungs-CRX-Datei herunterladen

Laden Sie SuperDog Extension for Authentication-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

                        SuperDog Extension for Authentication (used in iframe).
This extension exchange data with a native messaging host to help users on authentication to certain website using a SuperDog token. SuperDog token is a USB dongle which can be used for IP protection and website authentication.                    

Grundlegende Informationen zur Erweiterung

Name SuperDog Extension for Authentication SuperDog Extension for Authentication
ID hffoinfgcckjcnbnkklmllehiclagnam
Offizielle URL https://chromewebstore.google.com/detail/superdog-extension-for-au/hffoinfgcckjcnbnkklmllehiclagnam
Beschreibung Send a message to a native application for authentication.
Dateigröße 15.17 KB
Installationsanzahl 1,000
Aktuelle Version 2.0
Letztes Update 2023-11-08
Veröffentlichungsdatum 2017-09-14
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler SuperDog Team
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SuperDog Extension for Authentication",
    "version": "2.0",
    "manifest_version": 3,
    "description": "Send a message to a native application for authentication.",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "nativeMessaging"
    ]
}