Osu Songs Marked

The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…

O que é Osu Songs Marked?

Osu Songs Marked é uma extensão do Chrome desenvolvida por https://gooo.fi, e sua principal característica é "The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Osu Songs Marked

Baixe arquivos de extensão Osu Songs Marked 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

                        The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others. Songs will be marked as downloaded as you download them. Use the settings page to set the already downloaded songs by either pasting a comma-separated list of the song ids or using the folder picker and choosing the /osu!/songs folder (e.g C:\Users\Username\AppData\Local\osu!\Songs).                    

Informações Básicas da Extensão

Nome Osu Songs Marked Osu Songs Marked
ID gefmfplomccheldnpemojobemmncgghm
URL Oficial https://chromewebstore.google.com/detail/osu-songs-marked/gefmfplomccheldnpemojobemmncgghm
Descrição The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…
Tamanho do Arquivo 14.13 KB
Contagem de Instalações 128
Versão Atual 0.41
Última Atualização 2018-11-22
Data de Publicação 2018-11-22
Desenvolvedor https://gooo.fi
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Osu Songs Marked",
    "version": "0.41",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Change the settings for Osu Songs Marked",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "nosu16.png",
            "24": "nosu24.png",
            "32": "nosu32.png",
            "64": "nosu64.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/osu.ppy.sh\/p\/beatmaplist*"
            ],
            "js": [
                "beatmaplist.js"
            ]
        },
        {
            "matches": [
                "https:\/\/osu.ppy.sh\/s\/*",
                "https:\/\/osu.ppy.sh\/b\/*"
            ],
            "js": [
                "song.js"
            ]
        },
        {
            "matches": [
                "https:\/\/osu.ppy.sh\/beatmapsets*"
            ],
            "js": [
                "beatmapsets.js"
            ]
        }
    ]
}