Cave Game Extension - By Wolfbrain.eth
Tracks your Cave Game Path. Download as JSON from extensions options page.
Cave Game Extension - By Wolfbrain.eth là gì?
Cave Game Extension - By Wolfbrain.eth là một tiện ích mở rộng Chrome được phát triển bởi wolfbrain.eth, và tính năng chính của nó là "Tracks your Cave Game Path. Download as JSON from extensions options page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Cave Game Extension - By Wolfbrain.eth
Tải xuống các tệp mở rộng Cave Game Extension - By Wolfbrain.eth dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cave Game Extension - By Wolfbrain.eth |
ID | ecnkkmjcenhalochabknnllkmnamfihj |
URL Chính Thức | https://chromewebstore.google.com/detail/cave-game-extension-by-wo/ecnkkmjcenhalochabknnllkmnamfihj |
Mô tả | Tracks your Cave Game Path. Download as JSON from extensions options page. |
Kích Thước Tệp | 139 KB |
Số Lần Cài Đặt | 162 |
Phiên Bản Hiện Tại | 1.11 |
Cập Nhật Lần Cuối | 2022-05-27 |
Ngày Phát Hành | 2022-04-27 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | wolfbrain.eth |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |