Tab Play

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

Apa itu Tab Play?

Tab Play adalah ekstensi Chrome yang dikembangkan oleh cyfdev, dan fitur utamanya adalah "Pause/Play, scrub or mute videos playing on another tab or another window in current window!".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Tab Play

Unduh file ekstensi Tab Play dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
URL Resmi https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
Deskripsi Pause/Play, scrub or mute videos playing on another tab or another window in current window!
Ukuran File 54.91 KB
Jumlah Instalasi 114
Versi Saat Ini 2.0
Terakhir Diperbarui 2016-09-04
Tanggal Publikasi 2016-09-04
Penilaian 5.00/5 Total 4 Penilaian
Pengembang cyfdev
Tipe Pembayaran free
Bahasa yang Didukung 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\/"
    ]
}