DDR Score Tracker
Google Chrome extension for tracking your DanceDanceRevolution play records
DDR Score Tracker란 무엇입니까?
DDR Score Tracker은(는) Ryo Watanabe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google Chrome extension for tracking your DanceDanceRevolution play records"입니다.
확장 프로그램 스크린샷
DDR Score Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | DDR Score Tracker |
ID | kecflehdfdgjkmfbhhhjdfijfaghfipk |
공식 URL | https://chromewebstore.google.com/detail/ddr-score-tracker/kecflehdfdgjkmfbhhhjdfijfaghfipk |
설명 | Google Chrome extension for tracking your DanceDanceRevolution play records |
파일 크기 | 162 KB |
설치 횟수 | 70 |
현재 버전 | 0.2.0 |
최근 업데이트 | 2023-12-23 |
출시 날짜 | 2020-07-03 |
개발자 | Ryo Watanabe |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ryowatanabe/DDRScoreTracker |
도움말 페이지 URL | https://github.com/ryowatanabe/DDRScoreTracker |
개인정보 보호 정책 페이지 URL | https://github.com/ryowatanabe/DDRScoreTracker/blob/master/PRIVACY.md |
지원되는 언어 | 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\/" ] } |