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 |
官方URL | 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 } } |