DDR Score Tracker

Google Chrome extension for tracking your DanceDanceRevolution play records

O que é DDR Score Tracker?

DDR Score Tracker é uma extensão do Chrome desenvolvida por Ryo Watanabe, e sua principal característica é "Google Chrome extension for tracking your DanceDanceRevolution play records".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão DDR Score Tracker

Baixe arquivos de extensão DDR Score Tracker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome DDR Score Tracker DDR Score Tracker
ID kecflehdfdgjkmfbhhhjdfijfaghfipk
URL Oficial https://chromewebstore.google.com/detail/ddr-score-tracker/kecflehdfdgjkmfbhhhjdfijfaghfipk
Descrição Google Chrome extension for tracking your DanceDanceRevolution play records
Tamanho do Arquivo 162 KB
Contagem de Instalações 70
Versão Atual 0.2.0
Última Atualização 2023-12-23
Data de Publicação 2020-07-03
Desenvolvedor Ryo Watanabe
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ryowatanabe/DDRScoreTracker
URL da Página de Ajuda https://github.com/ryowatanabe/DDRScoreTracker
URL da Página de Política de Privacidade https://github.com/ryowatanabe/DDRScoreTracker/blob/master/PRIVACY.md
Idiomas Suportados 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\/"
    ]
}