OnHub Authorization Helper
This is an extension to assist in authorizing accounts with the OnHub API (documented here:…
OnHub Authorization Helper là gì?
OnHub Authorization Helper là một tiện ích mở rộng Chrome được phát triển bởi https://angelod.com, và tính năng chính của nó là "This is an extension to assist in authorizing accounts with the OnHub API (documented here:…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng OnHub Authorization Helper
Tải xuống các tệp mở rộng OnHub Authorization Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | OnHub Authorization Helper |
ID | ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
URL Chính Thức | https://chromewebstore.google.com/detail/onhub-authorization-helpe/ecgfhpjmkenogpckhiimbnkkmjgmdnkp |
Mô tả | This is an extension to assist in authorizing accounts with the OnHub API (documented here:… |
Kích Thước Tệp | 49.1 KB |
Số Lần Cài Đặt | 2,424 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-09-18 |
Ngày Phát Hành | 2020-08-11 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://angelod.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.angelod.com/onhubauthtool |
URL Trang Chính Sách Bảo Mật | https://www.angelod.com/extension-privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |