Tabs Playlist for Youtube
Simply manage your "playlist" by ordering your youtube tabs.
Tabs Playlist for Youtubeとは何ですか?
Tabs Playlist for YoutubeはMatthis de Witによって開発されたChromeの拡張機能で、その主な機能は「Simply manage your "playlist" by ordering your youtube tabs.」です。
拡張機能のスクリーンショット
Tabs Playlist for Youtube拡張機能のCRXファイルをダウンロード
Tabs Playlist for Youtube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Install: Add te extension to Google Chrome and reload all your Youtube tabs. Usage: 1. Open one Youtube video tab, the video starts playing automatically (as usual) 2. Other Youtube video tabs will be paused when loaded 3. When the 1st Youtube tab is almost done, it will crossfade with the next Youtube tab. When you play another Youtube tab, all other Youtube tabs will be paused. Known bugs: Occassionally a video is not automatically paused, working on this...
拡張機能の基本情報
名前 | |
ID | naplcmgdmolcljbkjajgdnlpfjcdclpi |
公式URL | https://chrome.google.com/webstore/detail/tabs-playlist-for-youtube/naplcmgdmolcljbkjajgdnlpfjcdclpi |
説明 | Simply manage your "playlist" by ordering your youtube tabs. |
ファイルサイズ | 72.74 KB |
インストール数 | 311 |
現在のバージョン | 0.0.1.0 |
最終更新日 | 2013-11-15 |
公開日 | 2013-11-15 |
評価 | 2.80/5 合計 15 レビュー |
開発者 | Matthis de Wit |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tabs Playlist for Youtube", "short_name": "TabPlaylistr", "version": "0.0.1.0", "manifest_version": 2, "description": "Simply manage your \"playlist\" by ordering your youtube tabs.", "icons": { "16": "image16.png", "48": "image48.png", "128": "image128.png" }, "permissions": [ "tabs", "*:\/\/*.youtube.com\/watch?*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?*" ], "js": [ "jquery.js", "contentScript.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "jquery.js", "youtube.js", "jquery.min.map" ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/watch?*" ], "ids": [ "*" ], "accepts_tls_channel_id": false }, "page_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_title": "Tabs Playlist for Youtube - enabled" } } |