SuperDog Authentication Extension
Send a message to a native application for authentication.
Was ist SuperDog Authentication Extension?
SuperDog Authentication Extension ist eine Chrome-Erweiterung, die von SuperDog Team entwickelt wurde, und ihr Hauptmerkmal ist "Send a message to a native application for authentication.".
Erweiterungsscreenshots
SuperDog Authentication Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie SuperDog Authentication Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pkoaafcbkhngggbdlpjojgadneppiajj |
| Offizielle URL | https://chromewebstore.google.com/detail/superdog-authentication-e/pkoaafcbkhngggbdlpjojgadneppiajj |
| Beschreibung | Send a message to a native application for authentication. |
| Dateigröße | 15.21 KB |
| Installationsanzahl | 1,561 |
| Aktuelle Version | 2.0 |
| Letztes Update | 2023-11-12 |
| Veröffentlichungsdatum | 2016-01-04 |
| Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
| Entwickler | SuperDog Team |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |