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

Osu Songs Marked란 무엇입니까?

Osu Songs Marked은(는) https://gooo.fi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…"입니다.

확장 프로그램 스크린샷

screenshot

Osu Songs Marked 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Osu Songs Marked Osu Songs Marked
ID gefmfplomccheldnpemojobemmncgghm
공식 URL https://chromewebstore.google.com/detail/osu-songs-marked/gefmfplomccheldnpemojobemmncgghm
설명 The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…
파일 크기 14.13 KB
설치 횟수 128
현재 버전 0.41
최근 업데이트 2018-11-22
출시 날짜 2018-11-22
개발자 https://gooo.fi
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}