OnHub Authorization Helper
This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Cos'è OnHub Authorization Helper?
OnHub Authorization Helper è un'estensione di Chrome sviluppata da https://angelod.com, e la sua funzione principale è "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OnHub Authorization Helper
Scarica i file di estensione OnHub Authorization Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | OnHub Authorization Helper |
ID | ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
URL Ufficiale | https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
Descrizione | This is an extension to assist in authorizing accounts with the OnHub API (documented here:… |
Dimensione del File | 49.1 KB |
Conteggio Installazioni | 2,424 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-09-18 |
Data di Pubblicazione | 2020-08-11 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | https://angelod.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.angelod.com/onhubauthtool |
URL della Pagina della Politica sulla Privacy | https://www.angelod.com/extension-privacy |
Lingue Supportate | 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" } } |