SuperDog Authentication Extension

Send a message to a native application for authentication.

Qu'est-ce que SuperDog Authentication Extension ?

SuperDog Authentication Extension est une extension Chrome développée par SuperDog Team, et sa fonction principale est "Send a message to a native application for authentication.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SuperDog Authentication Extension

Téléchargez les fichiers d'extension SuperDog Authentication Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SuperDog Authentication Extension SuperDog Authentication Extension
ID pkoaafcbkhngggbdlpjojgadneppiajj
URL Officiel https://chromewebstore.google.com/detail/superdog-authentication-e/pkoaafcbkhngggbdlpjojgadneppiajj
Description Send a message to a native application for authentication.
Taille du Fichier 15.21 KB
Nombre d'Installations 1,561
Version Actuelle 2.0
Dernière Mise à Jour 2023-11-12
Date de Publication 2016-01-04
Évaluation 3.67/5 Total 3 Évaluations
Développeur SuperDog Team
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SuperDog Authentication Extension",
    "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"
    ]
}