YTMusic random album
Picks a random album from your YouTube Music library and plays it.
什麼是YTMusic random album?
YTMusic random album是由Lubomír Moric開發的Chrome擴展程式,該擴展的主要功能是“Picks a random album from your YouTube Music library and plays it.”。
擴展截圖
下載YTMusic random album擴展crx文件
下載YTMusic random album擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |