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
官方網址 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\/"
    ]
}