YouQue
Queueing youtube videos
What is YouQue?
YouQue is a Chrome extension developed by Pahvi67, and its main feature is "Queueing youtube videos".
Extension Screenshots
Download YouQue Extension CRX File
Download YouQue extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | jedkmelkipfnbcgbanaeogegckbfeejh |
Official URL | https://chrome.google.com/webstore/detail/youque/jedkmelkipfnbcgbanaeogegckbfeejh |
Description | Queueing youtube videos |
File Size | 38.07 KB |
Installation Count | 29 |
Current Version | 1.0 |
Last Updated | 2014-10-20 |
Publish Date | 2014-10-20 |
Rating | 2.00/5 Total 2 Ratings |
Developer | Pahvi67 |
Payment Type | free |
Supported Languages | 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 } } |