Cave Game Extension - By Wolfbrain.eth
Tracks your Cave Game Path. Download as JSON from extensions options page.
O que é Cave Game Extension - By Wolfbrain.eth?
Cave Game Extension - By Wolfbrain.eth é uma extensão do Chrome desenvolvida por wolfbrain.eth, e sua principal característica é "Tracks your Cave Game Path. Download as JSON from extensions options page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cave Game Extension - By Wolfbrain.eth
Baixe arquivos de extensão Cave Game Extension - By Wolfbrain.eth 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
Tracks your Cave Game Path and items found for each animal and store it in Chromes local storage. From the extensions option page it is possible to download each animals track as a file containing JSON.
Informações Básicas da Extensão
Nome | Cave Game Extension - By Wolfbrain.eth |
ID | ecnkkmjcenhalochabknnllkmnamfihj |
URL Oficial | https://chromewebstore.google.com/detail/cave-game-extension-by-wo/ecnkkmjcenhalochabknnllkmnamfihj |
Descrição | Tracks your Cave Game Path. Download as JSON from extensions options page. |
Tamanho do Arquivo | 139 KB |
Contagem de Instalações | 162 |
Versão Atual | 1.11 |
Última Atualização | 2022-05-27 |
Data de Publicação | 2022-04-27 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | wolfbrain.eth |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cave Game Extension - By Wolfbrain.eth", "description": "Tracks your Cave Game Path. Download as JSON from extensions options page.", "version": "1.11", "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/wolf.game\/cave-game" ], "run_at": "document_start", "js": [ "content.js" ] }, { "matches": [ "https:\/\/wolf.game\/cave-game" ], "run_at": "document_end", "js": [ "write_extension_id_to_dom.js" ] } ], "web_accessible_resources": [ { "resources": [ "inject.js" ], "matches": [ "https:\/\/wolf.game\/*" ] } ], "externally_connectable": { "matches": [ "https:\/\/wolf.game\/cave-game" ] }, "options_page": "\/options\/options.html", "permissions": [ "storage", "unlimitedStorage" ], "action": { "default_icon": { "16": "\/images\/cave_game_by_wolfbrain_eth16.png", "32": "\/images\/cave_game_by_wolfbrain_eth32.png", "48": "\/images\/cave_game_by_wolfbrain_eth48.png", "128": "\/images\/cave_game_by_wolfbrain_eth128.png" } }, "icons": { "16": "\/images\/cave_game_by_wolfbrain_eth16.png", "32": "\/images\/cave_game_by_wolfbrain_eth32.png", "48": "\/images\/cave_game_by_wolfbrain_eth48.png", "128": "\/images\/cave_game_by_wolfbrain_eth128.png" } } |