YTMusic random album
Picks a random album from your YouTube Music library and plays it.
¿Qué es YTMusic random album?
YTMusic random album es una extensión de Chrome desarrollada por Lubomír Moric, y su función principal es "Picks a random album from your YouTube Music library and plays it.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YTMusic random album
Descarga archivos de extensión YTMusic random album en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | YTMusic random album |
ID | dncgjknchhlpnhebhabokhoippnmiloi |
URL Oficial | https://chromewebstore.google.com/detail/ytmusic-random-album/dncgjknchhlpnhebhabokhoippnmiloi |
Descripción | Picks a random album from your YouTube Music library and plays it. |
Tamaño del Archivo | 45.76 KB |
Cantidad de Instalaciones | 934 |
Versión Actual | 0.6.6 |
Última Actualización | 2019-10-08 |
Fecha de Publicación | 2019-10-08 |
Calificación | 3.00/5 Total de 4 Calificaciones |
Desarrollador | Lubomír Moric |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |