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.」です。

拡張機能のスクリーンショット

screenshot

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.                    

拡張機能の基本情報

名前 GHunt Companion GHunt Companion
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
Eメール [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"
    }
}