DDR Score Tracker
Google Chrome extension for tracking your DanceDanceRevolution play records
DDR Score Tracker là gì?
DDR Score Tracker là một tiện ích mở rộng Chrome được phát triển bởi Ryo Watanabe, và tính năng chính của nó là "Google Chrome extension for tracking your DanceDanceRevolution play records".
Ả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 DDR Score Tracker
Tải xuống các tệp mở rộng DDR Score Tracker 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
This software is not Score Manager but Score Tracker. Core concept of this software is to collect and utilize data on official website, without taking time and effort. It is unexpected that users enter data manually. (Though it is possible to consider it in future development, it will have low priority.) You have to subscribe e-amusement basic course for using this software. This software is developed as open source software. If you want to see details about software design and implementation, use "support site" link on "Support" pane.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DDR Score Tracker |
ID | kecflehdfdgjkmfbhhhjdfijfaghfipk |
URL Chính Thức | https://chromewebstore.google.com/detail/ddr-score-tracker/kecflehdfdgjkmfbhhhjdfijfaghfipk |
Mô tả | Google Chrome extension for tracking your DanceDanceRevolution play records |
Kích Thước Tệp | 162 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 0.2.0 |
Cập Nhật Lần Cuối | 2023-12-23 |
Ngày Phát Hành | 2020-07-03 |
Nhà Phát Triển | Ryo Watanabe |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ryowatanabe/DDRScoreTracker |
URL Trang Trợ Giúp | https://github.com/ryowatanabe/DDRScoreTracker |
URL Trang Chính Sách Bảo Mật | https://github.com/ryowatanabe/DDRScoreTracker/blob/master/PRIVACY.md |
Ngôn Ngữ Được Hỗ Trợ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "version": "0.2.0", "description": "__MSG_appDesc__", "default_locale": "ja", "icons": { "128": "res\/icon128.png" }, "action": { "default_title": "__MSG_appName__" }, "content_scripts": [ { "matches": [ "https:\/\/p.eagate.573.jp\/game\/ddr\/*" ], "js": [ "content_scripts\/main.js" ], "run_at": "document_start", "all_frames": false } ], "background": { "service_worker": "background\/main.js" }, "options_ui": { "page": "options_ui\/index.html" }, "web_accessible_resources": [ { "resources": [ "common\/*" ], "matches": [ "https:\/\/*\/*" ] } ], "permissions": [ "tabs", "storage", "unlimitedStorage" ], "host_permissions": [ "http:\/\/skillattack.com\/" ] } |