OnHub Authorization Helper
This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Co to jest OnHub Authorization Helper?
OnHub Authorization Helper to rozszerzenie Chrome opracowane przez https://angelod.com, a jego główną funkcją jest „This is an extension to assist in authorizing accounts with the OnHub API (documented here:…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia OnHub Authorization Helper
Pobierz pliki rozszerzeń OnHub Authorization Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | OnHub Authorization Helper |
ID | ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
Oficjalny URL | https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
Opis | This is an extension to assist in authorizing accounts with the OnHub API (documented here:… |
Rozmiar pliku | 49.1 KB |
Liczba instalacji | 2,424 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2021-09-18 |
Data Publikacji | 2020-08-11 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | https://angelod.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.angelod.com/onhubauthtool |
Adres URL Strony Polityki Prywatności | https://www.angelod.com/extension-privacy |
Obsługiwane Języki | 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" } } |