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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gooo.fi และคุณลักษณะหลักของมันคือ "The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Osu Songs Marked

ดาวน์โหลดไฟล์ส่วนขยาย Osu Songs Marked ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}