GHunt Companion

Load all needed cookies to use GHunt peacefully.

Τι είναι το GHunt Companion;

Το GHunt Companion είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mxrch.dev, και η κύρια λειτουργία του είναι "Load all needed cookies to use GHunt peacefully.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης GHunt Companion

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    }
}