GHunt Companion
Load all needed cookies to use GHunt peacefully.
什么是GHunt Companion?
GHunt Companion是由mxrch.dev开发的Chrome扩展程序,该扩展的主要功能是“Load all needed cookies to use GHunt peacefully.”。
扩展截图
下载GHunt Companion扩展crx文件
下载GHunt Companion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | dpdcofblfbmmnikcbmmiakkclocadjab |
| 官方URL | https://chromewebstore.google.com/detail/ghunt-companion/dpdcofblfbmmnikcbmmiakkclocadjab |
| 简介 | Load all needed cookies to use GHunt peacefully. |
| 文件大小 | 233 KB |
| 安装次数 | 8,818 |
| 当前版本 | 2.0.0 |
| 更新时间 | 2022-12-03 |
| 上架时间 | 2021-09-17 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | mxrch.dev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/mxrch/ghunt_companion |
| 支持的语言 | 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"
}
} | |