GHunt Companion
Load all needed cookies to use GHunt peacefully.
Qu'est-ce que GHunt Companion ?
GHunt Companion est une extension Chrome développée par mxrch.dev, et sa fonction principale est "Load all needed cookies to use GHunt peacefully.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GHunt Companion
Téléchargez les fichiers d'extension GHunt Companion au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GHunt Companion |
ID | dpdcofblfbmmnikcbmmiakkclocadjab |
URL Officiel | https://chromewebstore.google.com/detail/ghunt-companion/dpdcofblfbmmnikcbmmiakkclocadjab |
Description | Load all needed cookies to use GHunt peacefully. |
Taille du Fichier | 233 KB |
Nombre d'Installations | 8,818 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2022-12-03 |
Date de Publication | 2021-09-17 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | mxrch.dev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mxrch/ghunt_companion |
Langues Prises en Charge | 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" } } |