YouTube - Pause with Space Properly

Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.

O que é YouTube - Pause with Space Properly?

YouTube - Pause with Space Properly é uma extensão do Chrome desenvolvida por James Forsyth, e sua principal característica é "Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.".

Baixar o arquivo CRX da Extensão YouTube - Pause with Space Properly

Baixe arquivos de extensão YouTube - Pause with Space Properly 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

                        Fixes the common issue with pressing space to pause YouTube  videos. This extension refocuses the video when pressing space (unless you're trying to type), preventing the default behaviour that shoots halfway down the webpage.

Simple fix for a simple problem. Don't know why YouTube won't fix things themselves.                    

Informações Básicas da Extensão

Nome YouTube - Pause with Space Properly YouTube - Pause with Space Properly
ID cdidekkahbpdfkaegopcnpkobibblmof
URL Oficial https://chrome.google.com/webstore/detail/youtube-pause-with-space/cdidekkahbpdfkaegopcnpkobibblmof
Descrição Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.
Tamanho do Arquivo 19.83 KB
Contagem de Instalações 151
Versão Atual 1.0.0
Última Atualização 2017-12-13
Data de Publicação 2017-12-13
Classificação 3.80/5 Total de 10 Avaliações
Desenvolvedor James Forsyth
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube - Pause with Space Properly",
    "description": "Allows you to pause\/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "space.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "space-128.png",
        "38": "space-38.png",
        "19": "space-19.png"
    }
}