SuperDog Authentication Extension

Send a message to a native application for authentication.

Hvad er SuperDog Authentication Extension?

SuperDog Authentication Extension er en Chrome-udvidelse udviklet af SuperDog Team, og dens hovedfunktion er "Send a message to a native application for authentication.".

Udvidelsesskærmbilleder

screenshot

Download SuperDog Authentication Extension-udvidelses-CRX-fil

Download SuperDog Authentication Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn SuperDog Authentication Extension SuperDog Authentication Extension
ID pkoaafcbkhngggbdlpjojgadneppiajj
Officiel URL https://chromewebstore.google.com/detail/superdog-authentication-e/pkoaafcbkhngggbdlpjojgadneppiajj
Beskrivelse Send a message to a native application for authentication.
Filstørrelse 15.21 KB
Antal Installationer 1,561
Nuværende Version 2.0
Senest Opdateret 2023-11-12
Udgivelsesdato 2016-01-04
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler SuperDog Team
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}