Tab Play

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

Cos'è Tab Play?

Tab Play è un'estensione di Chrome sviluppata da cyfdev, e la sua funzione principale è "Pause/Play, scrub or mute videos playing on another tab or another window in current window!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Tab Play

Scarica i file di estensione Tab Play in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
URL Ufficiale https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
Descrizione Pause/Play, scrub or mute videos playing on another tab or another window in current window!
Dimensione del File 54.91 KB
Conteggio Installazioni 114
Versione Corrente 2.0
Ultimo Aggiornamento 2016-09-04
Data di Pubblicazione 2016-09-04
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore cyfdev
Tipo di Pagamento free
Lingue Supportate 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\/"
    ]
}