Tab Play

Pause/Play, scrub or mute videos playing on another tab or another window in current window!

What is Tab Play?

Tab Play is a Chrome extension developed by cyfdev, and its main feature is "Pause/Play, scrub or mute videos playing on another tab or another window in current window!".

Extension Screenshots

screenshot
screenshot

Download Tab Play Extension CRX File

Download Tab Play 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

                        Video player controller for those that work on multiple tabs in multiple windows

Have music playing in the background and want to pause it briefly without digging through all your tabs? 

Pause/Resume and skip forward and back with Video Tab Controller.
Have controll over what is playing on your browser, in your background, without having to dig for that one tab                    

Extension Basic Information

Name Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
Official URL https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
Description Pause/Play, scrub or mute videos playing on another tab or another window in current window!
File Size 54.91 KB
Installation Count 114
Current Version 2.0
Last Updated 2016-09-04
Publish Date 2016-09-04
Rating 5.00/5 Total 4 Ratings
Developer cyfdev
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Play",
    "description": "Pause\/Play, scrub or mute videos playing on another tab or another window in current window!",
    "version": "2.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Tab Control"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ]
}