OnHub Authorization Helper

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

OnHub Authorization Helperとは何ですか?

OnHub Authorization Helperはhttps://angelod.comによって開発されたChromeの拡張機能で、その主な機能は「This is an extension to assist in authorizing accounts with the OnHub API (documented here:…」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

OnHub Authorization Helper拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}