Tubepop
Undocks the embedded youtube video from their site into its own window.
什麼是Tubepop?
Tubepop是由logan.komanetz開發的Chrome擴展程式,該擴展的主要功能是“Undocks the embedded youtube video from their site into its own window.”。
下載Tubepop擴展crx文件
下載Tubepop擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension for Chrome allows you to take an already running video on YouTube and pop it out into its own window that you can resize and move. No longer are you stuck with playing the video inside of the YouTube page. Enjoy having your video off to the side in its own packed window while you are working on other things. ============= Version 1.3.1 ============= - Fixes bug with new Chrome update that stopped the window from being undocked - Changes button to only be enabled when in a Youtube "watch" window
擴展基本資訊
名稱 | |
ID | kinlkfbbcojohldppmkklkeecgpggohh |
官方網址 | https://chrome.google.com/webstore/detail/tubepop/kinlkfbbcojohldppmkklkeecgpggohh |
簡介 | Undocks the embedded youtube video from their site into its own window. |
檔案大小 | 13.36 KB |
安裝次數 | 12 |
目前版本 | 1.3.1 |
更新時間 | 2017-02-13 |
上架時間 | 2017-02-13 |
評分 | 5.00/5 共 1 次評分 |
開發者 | logan.komanetz |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tubepop", "description": "Undocks the embedded youtube video from their site into its own window.", "version": "1.3.1", "page_action": { "default_icon": "button_black_eject.png", "default_title": "Click to pop video out of YouTube." }, "background": { "scripts": [ "tubePop.js", "chromeExtension.js" ] }, "web_accessible_resources": [ "clientScript.js" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "tabs", "notifications", "storage", "declarativeContent" ], "options_page": "views\/options.html", "options_ui": { "page": "views\/options.html", "chrome_style": true } } |