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\/"
    ]
}