OnHub Authorization Helper

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

What is OnHub Authorization Helper?

OnHub Authorization Helper is a Chrome extension developed by https://angelod.com, and its main feature is "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".

Extension Screenshots

screenshot
screenshot
screenshot

Download OnHub Authorization Helper Extension CRX File

Download OnHub Authorization Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name OnHub Authorization Helper OnHub Authorization Helper
ID ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Official URL 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:…
File Size 49.1 KB
Installation Count 2,424
Current Version 1.0.0
Last Updated 2021-09-18
Publish Date 2020-08-11
Rating 5.00/5 Total 4 Ratings
Developer https://angelod.com
Email [email protected]
Payment Type free
Extension Website https://www.angelod.com/onhubauthtool
Privacy Policy Page URL https://www.angelod.com/extension-privacy
Supported Languages 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"
    }
}