Youtube playback control
Control all youtube tabs from any tab any window.
什么是Youtube playback control?
Youtube playback control是由Ankit Shah开发的Chrome扩展程序,该扩展的主要功能是“Control all youtube tabs from any tab any window.”。
扩展截图
下载Youtube playback control扩展crx文件
下载Youtube playback control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a chrome extension which will allow you to play, pause or jump to next youtube videos running across all tabs in all windows. Press the row containing title and it toggles the state of tab playing youtube video. You need to reload tabs once after installing the extension. Now also supports jumping to particular tab and closing the tab. The extension is open source so feel free to add any issues or pull requests on https://github.com/shahankit/youtube-playback-control.
扩展基本信息
名称 | Youtube playback control |
ID | okbcoijdeebocmahlanbfemnckjonfnh |
官方URL | https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh |
简介 | Control all youtube tabs from any tab any window. |
文件大小 | 46.5 KB |
安装次数 | 582 |
当前版本 | 0.1.4 |
更新时间 | 2017-09-11 |
上架时间 | 2017-09-11 |
评分 | 4.41/5 共27次评分 |
开发者 | Ankit Shah |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube playback control", "version": "0.1.4", "description": "Control all youtube tabs from any tab any window.", "browser_action": { "default_icon": { "19": "assets\/icon.png", "38": "assets\/[email protected]" }, "default_popup": "views\/popup\/index.html", "default_title": "Youtube Tabs" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ] } |