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 |
官方網址 | 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" } } |