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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The extension shows the already downloaded songs on the https://osu.ppy.sh/p/beatmaplist page as a different color from others.…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Osu Songs Marked एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |