GHunt Companion
Load all needed cookies to use GHunt peacefully.
GHunt Companion là gì?
GHunt Companion là một tiện ích mở rộng Chrome được phát triển bởi mxrch.dev, và tính năng chính của nó là "Load all needed cookies to use GHunt peacefully.".
Ả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 GHunt Companion
Tải xuống các tệp mở rộng GHunt Companion 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
GHunt Companion (v2) is an extension designed to reduce the time configuring GHunt cookies. The development of this extension has followed Firefox guidelines to use the Promise-based WebExtension/BrowserExt API being standardized by the W3 Browser Extensions group, and is using webextension-polyfill to provide a cross-browser compatibility with no changes. You can choose between these 2 methods to configure GHunt through the Companion extension : - Method 1 (fastest) => It gets the needed cookies, and send it to GHunt (who should be in listening on port 60067). - Method 2 => => It gets the needed cookies, encodes them in base64 and puts them into your clipboard.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GHunt Companion |
ID | dpdcofblfbmmnikcbmmiakkclocadjab |
URL Chính Thức | https://chromewebstore.google.com/detail/ghunt-companion/dpdcofblfbmmnikcbmmiakkclocadjab |
Mô tả | Load all needed cookies to use GHunt peacefully. |
Kích Thước Tệp | 233 KB |
Số Lần Cài Đặt | 8,818 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2022-12-03 |
Ngày Phát Hành | 2021-09-17 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | mxrch.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mxrch/ghunt_companion |
Ngôn Ngữ Được Hỗ Trợ | fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GHunt Companion", "version": "2.0.0", "description": "Load all needed cookies to use GHunt peacefully.", "icons": { "48": "assets\/ghunt_square.png" }, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*.google.com\/*", "storage", "cookies" ], "content_scripts": [ { "js": [ "lib\/browser-polyfill.min.js" ], "matches": [ "*:\/\/*.google.com\/*" ] } ], "background": { "page": "background\/background.html" }, "web_accessible_resources": [ "popup\/interface.html" ], "browser_action": { "default_icon": "assets\/ghunt_square.png", "default_title": "GHunt Companion", "default_popup": "popup\/interface.html" } } |