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. 扩展基本信息
| 名称 | |
| ID | pkoaafcbkhngggbdlpjojgadneppiajj |
| 官方URL | 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"
]
} | |