OnHub Authorization Helper
This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
什么是OnHub Authorization Helper?
OnHub Authorization Helper是由https://angelod.com开发的Chrome扩展程序,该扩展的主要功能是“This is an extension to assist in authorizing accounts with the OnHub API (documented here:…”。
扩展截图
下载OnHub Authorization Helper扩展crx文件
下载OnHub Authorization Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is an extension to assist in authorizing accounts with the OnHub API (documented here: https://documenter.getpostman.com/view/7490211/SzzdD1pF?version=latest). Once installed, click the extension to get started. Type a device name (maybe the name of your project) and press the button. If there are any issues, please report them to [email protected]. This is an open-source project. The code is available at the link below: https://github.com/AngeloD2022/onhubauthhelper
扩展基本信息
名称 | OnHub Authorization Helper |
ID | ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
官方URL | https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
简介 | This is an extension to assist in authorizing accounts with the OnHub API (documented here:… |
文件大小 | 49.1 KB |
安装次数 | 2,424 |
当前版本 | 1.0.0 |
更新时间 | 2021-09-18 |
上架时间 | 2020-08-11 |
评分 | 5.00/5 共4次评分 |
开发者 | https://angelod.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.angelod.com/onhubauthtool |
隐私政策页面URL | https://www.angelod.com/extension-privacy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OnHub Authorization Helper", "version": "1.0.0", "manifest_version": 2, "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/accounts.google.com\/embedded\/setup\/v2\/safarivc\/*", "cookies", "https:\/\/accounts.google.com\/embedded\/close" ], "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "background": { "scripts": [ "js\/jquery.min.js", "js\/safarivcHR.js", "js\/getauthcode.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/accounts.google.com\/embedded\/setup\/v2\/safarivc\/*?*" ], "js": [ "js\/loginPage.js" ] }, { "matches": [ "https:\/\/accounts.google.com\/embedded\/close" ], "js": [ "js\/jquery.min.js", "js\/tokenPage.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |