OnHub Authorization Helper

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

Что такое OnHub Authorization Helper?

OnHub Authorization Helper - это расширение Chrome, разработанное https://angelod.com, и его основная функция - "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения OnHub Authorization Helper

Скачайте файлы расширений OnHub Authorization Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название OnHub Authorization Helper OnHub Authorization Helper
ID ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Официальный URL https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp
Описание This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
Размер файла 49.1 KB
Количество установок 2,424
Текущая Версия 1.0.0
Последнее Обновление 2021-09-18
Дата публикации 2020-08-11
Рейтинг 5.00/5 Всего 4 оценок
Разработчик https://angelod.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.angelod.com/onhubauthtool
URL страницы политики конфиденциальности https://www.angelod.com/extension-privacy
Поддерживаемые языки 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"
    }
}