Youtube playback control

Control all youtube tabs from any tab any window.

What is Youtube playback control?

Youtube playback control is a Chrome extension developed by Ankit Shah, and its main feature is "Control all youtube tabs from any tab any window.".

Extension Screenshots

screenshot

Download Youtube playback control Extension CRX File

Download Youtube playback control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Youtube playback control Youtube playback control
ID okbcoijdeebocmahlanbfemnckjonfnh
Official URL https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh
Description Control all youtube tabs from any tab any window.
File Size 46.5 KB
Installation Count 582
Current Version 0.1.4
Last Updated 2017-09-11
Publish Date 2017-09-11
Rating 4.41/5 Total 27 Ratings
Developer Ankit Shah
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}