Tab Play

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

¿Qué es Tab Play?

Tab Play es una extensión de Chrome desarrollada por cyfdev, y su función principal es "Pause/Play, scrub or mute videos playing on another tab or another window in current window!".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Tab Play

Descarga archivos de extensión Tab Play en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
URL Oficial https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
Descripción Pause/Play, scrub or mute videos playing on another tab or another window in current window!
Tamaño del Archivo 54.91 KB
Cantidad de Instalaciones 114
Versión Actual 2.0
Última Actualización 2016-09-04
Fecha de Publicación 2016-09-04
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador cyfdev
Tipo de Pago free
Idiomas Soportados 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\/"
    ]
}