Tab Play

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

O que é Tab Play?

Tab Play é uma extensão do Chrome desenvolvida por cyfdev, e sua principal característica é "Pause/Play, scrub or mute videos playing on another tab or another window in current window!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Tab Play

Baixe arquivos de extensão Tab Play no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
URL Oficial https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
Descrição Pause/Play, scrub or mute videos playing on another tab or another window in current window!
Tamanho do Arquivo 54.91 KB
Contagem de Instalações 114
Versão Atual 2.0
Última Atualização 2016-09-04
Data de Publicação 2016-09-04
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor cyfdev
Tipo de Pagamento free
Idiomas Suportados 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\/"
    ]
}