YouTube Randomiser
Shuffle YouTube albums.
Qu'est-ce que YouTube Randomiser ?
YouTube Randomiser est une extension Chrome développée par James & Chris, et sa fonction principale est "Shuffle YouTube albums.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Randomiser
Téléchargez les fichiers d'extension YouTube Randomiser 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
Many times you come across YouTube videos that contain full albums. Often the songs are listed in the description, along with their timestamps. This extension allows you to shuffle the songs and to easily find the name of what song is currently playing. -Video hide button added. -Sometimes does not activate properly on pages that it should. A refresh of the page should fix this. If you have any issues please submit them to: https://github.com/jamesthompson275/YoutubeRandomiser
Informations de Base sur l'Extension
Nom | YouTube Randomiser |
ID | kbonbjcebioebdkiceoobjjgdjllmklo |
URL Officiel | https://chromewebstore.google.com/detail/youtube-randomiser/kbonbjcebioebdkiceoobjjgdjllmklo |
Description | Shuffle YouTube albums. |
Taille du Fichier | 12.55 KB |
Nombre d'Installations | 254 |
Version Actuelle | 0.8.1 |
Dernière Mise à Jour | 2016-11-16 |
Date de Publication | 2016-11-15 |
Évaluation | 3.29/5 Total 7 Évaluations |
Développeur | James & Chris |
Type de Paiement | free |
Langues Prises en Charge | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Randomiser", "description": "Shuffle YouTube albums.", "version": "0.8.1", "icons": { "128": "images\/icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "scripts\/inject.js" ], "css": [ "styles\/style.css" ] } ], "web_accessible_resources": [ "scripts\/extension.js" ], "background": { "scripts": [ "scripts\/bootstrap.js" ], "persistent": false }, "permissions": [ "tabs", "storage", "https:\/\/www.youtube.com\/", "http:\/\/www.youtube.com\/" ], "page_action": { "default_title": "YouTube Randomiser", "default_icon": "images\/icon.png", "default_popup": "popup.html" } } |