DDR Score Tracker

Google Chrome extension for tracking your DanceDanceRevolution play records

DDR Score Trackerคืออะไร?

DDR Score Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ryo Watanabe และคุณลักษณะหลักของมันคือ "Google Chrome extension for tracking your DanceDanceRevolution play records"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DDR Score Tracker

ดาวน์โหลดไฟล์ส่วนขยาย DDR Score Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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\/"
    ]
}