SuperDog Extension for Authentication

Send a message to a native application for authentication.

Vad är SuperDog Extension for Authentication?

SuperDog Extension for Authentication är en Chrome-tillägg utvecklad av SuperDog Team, och dess huvudfunktion är "Send a message to a native application for authentication.".

Tilläggsskärmbilder

screenshot

Ladda ner SuperDog Extension for Authentication-förlängningens CRX-fil

Ladda ner SuperDog Extension for Authentication-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn SuperDog Extension for Authentication SuperDog Extension for Authentication
ID hffoinfgcckjcnbnkklmllehiclagnam
Officiell webbadress https://chromewebstore.google.com/detail/superdog-extension-for-au/hffoinfgcckjcnbnkklmllehiclagnam
Beskrivning Send a message to a native application for authentication.
Filstorlek 15.17 KB
Antal Installationer 1,000
Aktuell Version 2.0
Senast Uppdaterad 2023-11-08
Publiceringsdatum 2017-09-14
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare SuperDog Team
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}