OnHub Authorization Helper
This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Co je OnHub Authorization Helper?
OnHub Authorization Helper je rozšíření Chrome vyvinuté https://angelod.com, a jeho hlavní funkcí je „This is an extension to assist in authorizing accounts with the OnHub API (documented here:…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření OnHub Authorization Helper
Stáhněte si soubory rozšíření OnHub Authorization Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | OnHub Authorization Helper |
ID | ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
Oficiální URL | https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
Popis | This is an extension to assist in authorizing accounts with the OnHub API (documented here:… |
Velikost souboru | 49.1 KB |
Počet instalací | 2,424 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2021-09-18 |
Datum Vydání | 2020-08-11 |
Hodnocení | 5.00/5 Celkem 4 Hodnocení |
Vývojář | https://angelod.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.angelod.com/onhubauthtool |
URL Stránky Zásad Ochrany Soukromí | https://www.angelod.com/extension-privacy |
Podporované Jazyky | 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" } } |