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.」です。
拡張機能のスクリーンショット
Cave Game Extension - By Wolfbrain.eth拡張機能のCRXファイルをダウンロード
Cave Game Extension - By Wolfbrain.eth拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" } } |