OnHub Authorization Helper

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

¿Qué es OnHub Authorization Helper?

OnHub Authorization Helper es una extensión de Chrome desarrollada por https://angelod.com, y su función principal es "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión OnHub Authorization Helper

Descarga archivos de extensión OnHub Authorization Helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre OnHub Authorization Helper OnHub Authorization Helper
ID ecgfhpjmkenogpckhiimbnkkmjgmdnkp
URL Oficial https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Descripción This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Tamaño del Archivo 49.1 KB
Cantidad de Instalaciones 2,424
Versión Actual 1.0.0
Última Actualización 2021-09-18
Fecha de Publicación 2020-08-11
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador https://angelod.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.angelod.com/onhubauthtool
URL de la Página de Política de Privacidad https://www.angelod.com/extension-privacy
Idiomas Soportados 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"
    }
}