YouTube Randomiser
Shuffle YouTube albums.
什麼是YouTube Randomiser?
YouTube Randomiser是由James & Chris開發的Chrome擴展程式,該擴展的主要功能是“Shuffle YouTube albums.”。
擴展截圖
下載YouTube Randomiser擴展crx文件
下載YouTube Randomiser擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | YouTube Randomiser |
ID | kbonbjcebioebdkiceoobjjgdjllmklo |
官方網址 | https://chromewebstore.google.com/detail/youtube-randomiser/kbonbjcebioebdkiceoobjjgdjllmklo |
簡介 | Shuffle YouTube albums. |
檔案大小 | 12.55 KB |
安裝次數 | 254 |
目前版本 | 0.8.1 |
更新時間 | 2016-11-16 |
上架時間 | 2016-11-15 |
評分 | 3.29/5 共 7 次評分 |
開發者 | James & Chris |
付費類型 | free |
支援的語言 | 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" } } |