OnHub Authorization Helper

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

Vad är OnHub Authorization Helper?

OnHub Authorization Helper är en Chrome-tillägg utvecklad av https://angelod.com, och dess huvudfunktion är "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner OnHub Authorization Helper-förlängningens CRX-fil

Ladda ner OnHub Authorization Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn OnHub Authorization Helper OnHub Authorization Helper
ID ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Officiell webbadress https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Beskrivning This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Filstorlek 49.1 KB
Antal Installationer 2,424
Aktuell Version 1.0.0
Senast Uppdaterad 2021-09-18
Publiceringsdatum 2020-08-11
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare https://angelod.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.angelod.com/onhubauthtool
URL till Sekretesspolicy Sidan https://www.angelod.com/extension-privacy
Stödda Språk 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"
    }
}