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?
YouTube Tab Switch是由seungguini开发的Chrome扩展程序,该扩展的主要功能是“No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing”。
扩展截图
下载YouTube Tab Switch扩展crx文件
下载YouTube Tab Switch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | ffbfmnpnnpioeahopelpofkgdnoglkom |
官方URL | https://chromewebstore.google.com/detail/youtube-tab-switch/ffbfmnpnnpioeahopelpofkgdnoglkom |
简介 | No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing |
文件大小 | 694 KB |
安装次数 | 32 |
当前版本 | 1.0 |
更新时间 | 2020-01-28 |
上架时间 | 2020-01-27 |
评分 | 3.33/5 共3次评分 |
开发者 | seungguini |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://github.com/seungguini/youtube-tab-switch |
支持的语言 | 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" ] } |