SuperDog Authentication Extension

Send a message to a native application for authentication.

Wat is SuperDog Authentication Extension?

SuperDog Authentication Extension is een Chrome-extensie ontwikkeld door SuperDog Team, en de belangrijkste functie is "Send a message to a native application for authentication.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SuperDog Authentication Extension

Download SuperDog Authentication Extension-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

                        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.                    

Basisinformatie over de Extensie

Naam SuperDog Authentication Extension SuperDog Authentication Extension
ID pkoaafcbkhngggbdlpjojgadneppiajj
Officiële URL https://chromewebstore.google.com/detail/superdog-authentication-e/pkoaafcbkhngggbdlpjojgadneppiajj
Beschrijving Send a message to a native application for authentication.
Bestandsgrootte 15.21 KB
Aantal Installaties 1,561
Huidige Versie 2.0
Laatst Bijgewerkt 2023-11-12
Publicatiedatum 2016-01-04
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar SuperDog Team
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}