Tubepop
Undocks the embedded youtube video from their site into its own window.
Tubepop là gì?
Tubepop là một tiện ích mở rộng Chrome được phát triển bởi logan.komanetz, và tính năng chính của nó là "Undocks the embedded youtube video from their site into its own window.".
Tải xuống tệp CRX của tiện ích mở rộng Tubepop
Tải xuống các tệp mở rộng Tubepop dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kinlkfbbcojohldppmkklkeecgpggohh |
URL Chính Thức | https://chrome.google.com/webstore/detail/tubepop/kinlkfbbcojohldppmkklkeecgpggohh |
Mô tả | Undocks the embedded youtube video from their site into its own window. |
Kích Thước Tệp | 13.36 KB |
Số Lần Cài Đặt | 12 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2017-02-13 |
Ngày Phát Hành | 2017-02-13 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | logan.komanetz |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |