Cave Game Extension - By Wolfbrain.eth

Tracks your Cave Game Path. Download as JSON from extensions options page.

Cos'è Cave Game Extension - By Wolfbrain.eth?

Cave Game Extension - By Wolfbrain.eth è un'estensione di Chrome sviluppata da wolfbrain.eth, e la sua funzione principale è "Tracks your Cave Game Path. Download as JSON from extensions options page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Cave Game Extension - By Wolfbrain.eth

Scarica i file di estensione Cave Game Extension - By Wolfbrain.eth in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cave Game Extension - By Wolfbrain.eth Cave Game Extension - By Wolfbrain.eth
ID ecnkkmjcenhalochabknnllkmnamfihj
URL Ufficiale https://chromewebstore.google.com/detail/cave-game-extension-by-wo/ecnkkmjcenhalochabknnllkmnamfihj
Descrizione Tracks your Cave Game Path. Download as JSON from extensions options page.
Dimensione del File 139 KB
Conteggio Installazioni 162
Versione Corrente 1.11
Ultimo Aggiornamento 2022-05-27
Data di Pubblicazione 2022-04-27
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore wolfbrain.eth
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}