OnHub Authorization Helper
This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Wat is OnHub Authorization Helper?
OnHub Authorization Helper is een Chrome-extensie ontwikkeld door https://angelod.com, en de belangrijkste functie is "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".
Extensie Screenshots
Download het CRX-bestand van de extensie OnHub Authorization Helper
Download OnHub Authorization Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        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                     Basisinformatie over de Extensie
| Naam |   |  
| ID | ecgfhpjmkenogpckhiimbnkkmjgmdnkp | 
| Officiële URL | https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp | 
| Beschrijving | This is an extension to assist in authorizing accounts with the OnHub API (documented here:… | 
| Bestandsgrootte | 49.1 KB | 
| Aantal Installaties | 2,424 | 
| Huidige Versie | 1.0.0 | 
| Laatst Bijgewerkt | 2021-09-18 | 
| Publicatiedatum | 2020-08-11 | 
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen | 
| Ontwikkelaar | https://angelod.com | 
| [email protected] | |
| Betalingswijze | free | 
| Extensiewebsite | https://www.angelod.com/onhubauthtool | 
| URL van de Privacybeleid Pagina | https://www.angelod.com/extension-privacy | 
| Ondersteunde Talen | 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"
    }
}  |  |