YTMusic random album

Picks a random album from your YouTube Music library and plays it.

Qu'est-ce que YTMusic random album ?

YTMusic random album est une extension Chrome développée par Lubomír Moric, et sa fonction principale est "Picks a random album from your YouTube Music library and plays it.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension YTMusic random album

Téléchargez les fichiers d'extension YTMusic random album au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom YTMusic random album YTMusic random album
ID dncgjknchhlpnhebhabokhoippnmiloi
URL Officiel https://chromewebstore.google.com/detail/ytmusic-random-album/dncgjknchhlpnhebhabokhoippnmiloi
Description Picks a random album from your YouTube Music library and plays it.
Taille du Fichier 45.76 KB
Nombre d'Installations 934
Version Actuelle 0.6.6
Dernière Mise à Jour 2019-10-08
Date de Publication 2019-10-08
Évaluation 3.00/5 Total 4 Évaluations
Développeur Lubomír Moric
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}