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"
    }
}