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
电子邮箱 [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\/"
    ]
}