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.…

Qu'est-ce que Osu Songs Marked ?

Osu Songs Marked est une extension Chrome développée par https://gooo.fi, et sa fonction principale est "The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Osu Songs Marked

Téléchargez les fichiers d'extension Osu Songs Marked au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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).                    

Informations de Base sur l'Extension

Nom Osu Songs Marked Osu Songs Marked
ID gefmfplomccheldnpemojobemmncgghm
URL Officiel https://chromewebstore.google.com/detail/osu-songs-marked/gefmfplomccheldnpemojobemmncgghm
Description The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…
Taille du Fichier 14.13 KB
Nombre d'Installations 128
Version Actuelle 0.41
Dernière Mise à Jour 2018-11-22
Date de Publication 2018-11-22
Développeur https://gooo.fi
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}