YouTube Tab Switch

No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing

O que é YouTube Tab Switch?

YouTube Tab Switch é uma extensão do Chrome desenvolvida por seungguini, e sua principal característica é "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão YouTube Tab Switch

Baixe arquivos de extensão YouTube Tab Switch 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

                        No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that one (and only one) video is always playing! Ever had to constantly switch between multiple YouTube video tabs when pausing a tutorial to play some music while taking notes? Ever open a new video tabs to watch later, only to lose track and have a cacophony of audio? This Extension helps you focus on the video YOU want to watch with two core functions:
1. When you play a YouTube video, all other YouTube videos on different tabs and windows are paused.
2. When you pause a video, the most-recently played video plays automatically in the background, allowing you to have a constant stream of sound                    

Informações Básicas da Extensão

Nome YouTube Tab Switch YouTube Tab Switch
ID ffbfmnpnnpioeahopelpofkgdnoglkom
URL Oficial https://chromewebstore.google.com/detail/youtube-tab-switch/ffbfmnpnnpioeahopelpofkgdnoglkom
Descrição No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing
Tamanho do Arquivo 694 KB
Contagem de Instalações 32
Versão Atual 1.0
Última Atualização 2020-01-28
Data de Publicação 2020-01-27
Classificação 3.33/5 Total de 3 Avaliações
Desenvolvedor seungguini
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://github.com/seungguini/youtube-tab-switch
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Tab Switch",
    "description": "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing",
    "version": "1.0",
    "icons": {
        "128": "img\/icon128.png",
        "32": "img\/icon32.png",
        "16": "img\/icon16.png"
    },
    "browser_action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup.html",
        "default_title": "Youtube Tab Switch"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js",
                "lib\/jquery-3.4.1.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ]
}