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 } } |