Cave Game Extension - By Wolfbrain.eth

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

Qu'est-ce que Cave Game Extension - By Wolfbrain.eth ?

Cave Game Extension - By Wolfbrain.eth est une extension Chrome développée par wolfbrain.eth, et sa fonction principale est "Tracks your Cave Game Path. Download as JSON from extensions options page.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Cave Game Extension - By Wolfbrain.eth

Téléchargez les fichiers d'extension Cave Game Extension - By Wolfbrain.eth 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

                        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.                    

Informations de Base sur l'Extension

Nom Cave Game Extension - By Wolfbrain.eth Cave Game Extension - By Wolfbrain.eth
ID ecnkkmjcenhalochabknnllkmnamfihj
URL Officiel https://chromewebstore.google.com/detail/cave-game-extension-by-wo/ecnkkmjcenhalochabknnllkmnamfihj
Description Tracks your Cave Game Path. Download as JSON from extensions options page.
Taille du Fichier 139 KB
Nombre d'Installations 162
Version Actuelle 1.11
Dernière Mise à Jour 2022-05-27
Date de Publication 2022-04-27
Évaluation 5.00/5 Total 2 Évaluations
Développeur wolfbrain.eth
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}