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.…”。
擴展截圖
下載Osu Songs Marked擴展crx文件
下載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 |
ID | gefmfplomccheldnpemojobemmncgghm |
官方網址 | 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" ] } ] } |