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 |
官方網址 | 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" } } |