OnHub Authorization Helper
This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Qu'est-ce que OnHub Authorization Helper ?
OnHub Authorization Helper est une extension Chrome développée par https://angelod.com, et sa fonction principale est "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OnHub Authorization Helper
Téléchargez les fichiers d'extension OnHub Authorization Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | OnHub Authorization Helper |
ID | ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
URL Officiel | https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
Description | This is an extension to assist in authorizing accounts with the OnHub API (documented here:… |
Taille du Fichier | 49.1 KB |
Nombre d'Installations | 2,424 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-09-18 |
Date de Publication | 2020-08-11 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | https://angelod.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.angelod.com/onhubauthtool |
URL de la Page de Politique de Confidentialité | https://www.angelod.com/extension-privacy |
Langues Prises en Charge | 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" } } |