YTMusic random album
Picks a random album from your YouTube Music library and plays it.
YTMusic random album क्या है?
YTMusic random album Lubomír Moric द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Picks a random album from your YouTube Music library and plays it."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YTMusic random album एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension enhances YouTube Music with a feature of random album play. This is especially helpful for classic music listeners, when whole album needs to be played in whole, instead of random selection of tracks from your library or playlist. Extension is operated by clicking its icon, no menus or other buttons are present. Simply click the extension icon and YouTube Music library tab will open for you, in case it is not already present (non-existing YouTube Music library tab is signalised by black'n'white icon, color icon signalises, that proper tab is present in browser). Than it randomly picks album from your library and plays it. You need to keep the YouTube music library tab present in browser to play another random album or new tab will be opened again. Also first play takes about 10s, until all your albums are loaded, as YouTube Music uses lazy loading of your library and extension needs to have list of all your albums. Any following random play is already instant.
एक्सटेंशन की मूल जानकारी
नाम | YTMusic random album |
ID | dncgjknchhlpnhebhabokhoippnmiloi |
आधिकारिक URL | https://chromewebstore.google.com/detail/ytmusic-random-album/dncgjknchhlpnhebhabokhoippnmiloi |
विवरण | Picks a random album from your YouTube Music library and plays it. |
फ़ाइल का आकार | 45.76 KB |
स्थापना संख्या | 934 |
वर्तमान संस्करण | 0.6.6 |
अंतिम अपडेट | 2019-10-08 |
प्रकाशन तिथि | 2019-10-08 |
रेटिंग | 3.00/5 कुल 4 रेटिंग्स |
डेवलपर | Lubomír Moric |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YTMusic random album", "version": "0.6.6", "description": "Picks a random album from your YouTube Music library and plays it.", "browser_action": [], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/music.youtube.com\/*" ], "run_at": "document_start", "js": [ "js\/jquery.min.js" ] } ], "permissions": [ "tabs", "notifications", "storage", "https:\/\/music.youtube.com\/*", "https:\/\/lh3.googleusercontent.com\/*" ], "icons": { "128": "icons\/icon128x128.png" } } |