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:…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة OnHub Authorization Helper
قم بتنزيل ملفات الامتداد OnHub Authorization Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة سياسة الخصوصية | 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"
}
} | |