Cave Game Extension - By Wolfbrain.eth

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

Cave Game Extension - By Wolfbrain.eth란 무엇입니까?

Cave Game Extension - By Wolfbrain.eth은(는) wolfbrain.eth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tracks your Cave Game Path. Download as JSON from extensions options page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Cave Game Extension - By Wolfbrain.eth 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Cave Game Extension - By Wolfbrain.eth Cave Game Extension - By Wolfbrain.eth
ID ecnkkmjcenhalochabknnllkmnamfihj
공식 URL https://chromewebstore.google.com/detail/cave-game-extension-by-wo/ecnkkmjcenhalochabknnllkmnamfihj
설명 Tracks your Cave Game Path. Download as JSON from extensions options page.
파일 크기 139 KB
설치 횟수 162
현재 버전 1.11
최근 업데이트 2022-05-27
출시 날짜 2022-04-27
평점 5.00/5 총 2 개의 평점
개발자 wolfbrain.eth
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}