SuperDog Authentication Extension
Send a message to a native application for authentication.
什麼是SuperDog Authentication Extension?
SuperDog Authentication Extension是由SuperDog Team開發的Chrome擴展程式,該擴展的主要功能是“Send a message to a native application for authentication.”。
擴展截圖
下載SuperDog Authentication Extension擴展crx文件
下載SuperDog Authentication Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | SuperDog Authentication Extension |
ID | pkoaafcbkhngggbdlpjojgadneppiajj |
官方網址 | https://chromewebstore.google.com/detail/superdog-authentication-e/pkoaafcbkhngggbdlpjojgadneppiajj |
簡介 | Send a message to a native application for authentication. |
檔案大小 | 15.21 KB |
安裝次數 | 1,561 |
目前版本 | 2.0 |
更新時間 | 2023-11-12 |
上架時間 | 2016-01-04 |
評分 | 3.67/5 共 3 次評分 |
開發者 | SuperDog Team |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |