YouTube Tab Switch
No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing
YouTube Tab Switch là gì?
YouTube Tab Switch là một tiện ích mở rộng Chrome được phát triển bởi seungguini, và tính năng chính của nó là "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Tab Switch
Tải xuống các tệp mở rộng YouTube Tab Switch 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
No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that one (and only one) video is always playing! Ever had to constantly switch between multiple YouTube video tabs when pausing a tutorial to play some music while taking notes? Ever open a new video tabs to watch later, only to lose track and have a cacophony of audio? This Extension helps you focus on the video YOU want to watch with two core functions: 1. When you play a YouTube video, all other YouTube videos on different tabs and windows are paused. 2. When you pause a video, the most-recently played video plays automatically in the background, allowing you to have a constant stream of sound
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ffbfmnpnnpioeahopelpofkgdnoglkom |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-tab-switch/ffbfmnpnnpioeahopelpofkgdnoglkom |
Mô tả | No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing |
Kích Thước Tệp | 694 KB |
Số Lần Cài Đặt | 32 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-01-28 |
Ngày Phát Hành | 2020-01-27 |
Đánh Giá | 3.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | seungguini |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://github.com/seungguini/youtube-tab-switch |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Tab Switch", "description": "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing", "version": "1.0", "icons": { "128": "img\/icon128.png", "32": "img\/icon32.png", "16": "img\/icon16.png" }, "browser_action": { "default_icon": "img\/icon16.png", "default_popup": "popup.html", "default_title": "Youtube Tab Switch" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js", "lib\/jquery-3.4.1.min.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "*:\/\/*.youtube.com\/*", "storage" ] } |