OnHub Authorization Helper

This is an extension to assist in authorizing accounts with the OnHub API (documented here:…

O que é OnHub Authorization Helper?

OnHub Authorization Helper é uma extensão do Chrome desenvolvida por https://angelod.com, e sua principal característica é "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão OnHub Authorization Helper

Baixe arquivos de extensão OnHub Authorization Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome OnHub Authorization Helper OnHub Authorization Helper
ID ecgfhpjmkenogpckhiimbnkkmjgmdnkp
URL Oficial https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Descrição This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Tamanho do Arquivo 49.1 KB
Contagem de Instalações 2,424
Versão Atual 1.0.0
Última Atualização 2021-09-18
Data de Publicação 2020-08-11
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor https://angelod.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.angelod.com/onhubauthtool
URL da Página de Política de Privacidade https://www.angelod.com/extension-privacy
Idiomas Suportados 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"
    }
}