YouQue
Queueing youtube videos
什麼是YouQue?
YouQue是由Pahvi67開發的Chrome擴展程式,該擴展的主要功能是“Queueing youtube videos”。
擴展截圖
下載YouQue擴展crx文件
下載YouQue擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
YouQue will allow you to queue YouTube videos. All you need to do is open YouTube in adjacent tabs and they will play in order from left to right. It will also automatically stop videos to further help manage the tabs. Currently this has no on/off button so you will have to disable it in extensions if you don't want to use it. In case you have any questions or encounter any bugs please let me know.
擴展基本資訊
名稱 | |
ID | jedkmelkipfnbcgbanaeogegckbfeejh |
官方網址 | https://chrome.google.com/webstore/detail/youque/jedkmelkipfnbcgbanaeogegckbfeejh |
簡介 | Queueing youtube videos |
檔案大小 | 38.07 KB |
安裝次數 | 29 |
目前版本 | 1.0 |
更新時間 | 2014-10-20 |
上架時間 | 2014-10-20 |
評分 | 2.00/5 共 2 次評分 |
開發者 | Pahvi67 |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouQue", "description": "Queueing youtube videos", "version": "1.0", "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube.fi\/*", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*", "http:\/\/*.youtube.fi\/*", "https:\/\/*.youtube.fi\/*" ], "js": [ "jquery.js", "contentscript.js" ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube.fi\/*", "tabs" ], "run_at": "document_end" } ], "background": { "scripts": [ "jquery.js", "eventPage.js" ], "persistent": false } } |