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」です。

拡張機能のスクリーンショット

screenshot
screenshot

DDR Score Tracker拡張機能のCRXファイルをダウンロード

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
Eメール [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\/"
    ]
}