OnHub Authorization Helper

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

Was ist OnHub Authorization Helper?

OnHub Authorization Helper ist eine Chrome-Erweiterung, die von https://angelod.com entwickelt wurde, und ihr Hauptmerkmal ist "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

OnHub Authorization Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie OnHub Authorization Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name OnHub Authorization Helper OnHub Authorization Helper
ID ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Offizielle URL https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Beschreibung This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Dateigröße 49.1 KB
Installationsanzahl 2,424
Aktuelle Version 1.0.0
Letztes Update 2021-09-18
Veröffentlichungsdatum 2020-08-11
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler https://angelod.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.angelod.com/onhubauthtool
URL der Datenschutzrichtlinien-Seite https://www.angelod.com/extension-privacy
Unterstützte Sprachen 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"
    }
}