Tab Play

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

什么是Tab Play?

Tab Play是由cyfdev开发的Chrome扩展程序,该扩展的主要功能是“Pause/Play, scrub or mute videos playing on another tab or another window in current window!”。

扩展截图

screenshot
screenshot

下载Tab Play扩展crx文件

下载Tab Play扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
官方URL https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
简介 Pause/Play, scrub or mute videos playing on another tab or another window in current window!
文件大小 54.91 KB
安装次数 114
当前版本 2.0
更新时间 2016-09-04
上架时间 2016-09-04
评分 5.00/5 共4次评分
开发者 cyfdev
付费类型 free
支持的语言 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\/"
    ]
}