SuperDog Extension for Authentication

Send a message to a native application for authentication.

Co to jest SuperDog Extension for Authentication?

SuperDog Extension for Authentication to rozszerzenie Chrome opracowane przez SuperDog Team, a jego główną funkcją jest „Send a message to a native application for authentication.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SuperDog Extension for Authentication

Pobierz pliki rozszerzeń SuperDog Extension for Authentication w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SuperDog Extension for Authentication SuperDog Extension for Authentication
ID hffoinfgcckjcnbnkklmllehiclagnam
Oficjalny URL https://chromewebstore.google.com/detail/superdog-extension-for-au/hffoinfgcckjcnbnkklmllehiclagnam
Opis Send a message to a native application for authentication.
Rozmiar pliku 15.17 KB
Liczba instalacji 1,000
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2023-11-08
Data Publikacji 2017-09-14
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper SuperDog Team
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}