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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}