GHunt Companion
Load all needed cookies to use GHunt peacefully.
O que é GHunt Companion?
GHunt Companion é uma extensão do Chrome desenvolvida por mxrch.dev, e sua principal característica é "Load all needed cookies to use GHunt peacefully.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GHunt Companion
Baixe arquivos de extensão GHunt Companion no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | GHunt Companion |
ID | dpdcofblfbmmnikcbmmiakkclocadjab |
URL Oficial | https://chromewebstore.google.com/detail/ghunt-companion/dpdcofblfbmmnikcbmmiakkclocadjab |
Descrição | Load all needed cookies to use GHunt peacefully. |
Tamanho do Arquivo | 233 KB |
Contagem de Instalações | 8,818 |
Versão Atual | 2.0.0 |
Última Atualização | 2022-12-03 |
Data de Publicação | 2021-09-17 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | mxrch.dev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/mxrch/ghunt_companion |
Idiomas Suportados | 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" } } |