YouTube Spacebar pausing

Pause videos on page load with the space bar

¿Qué es YouTube Spacebar pausing?

YouTube Spacebar pausing es una extensión de Chrome desarrollada por D3.io, y su función principal es "Pause videos on page load with the space bar".

Descargar Archivo CRX de la Extensión YouTube Spacebar pausing

Descarga archivos de extensión YouTube Spacebar pausing 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

                        This enables you to use the spacebar to pause YouTube videos as soon as the page has loaded. YouTube usually requires that you first manually pause the video by clicking the pause button before the spacebar trick works. This will enable you to use the spacebar to pause a YouTube video whenever you feel like!


CHANGELOG
---------

1.3 
- Fixed form focus issue, preventing you from using spaces in the search bar

1.2
- Fixed issue with pausing when writing a comment

1.1
- Fixed YouTube fullscreen issue

1.0
- Released!                    

Información Básica de la Extensión

Nombre YouTube Spacebar pausing YouTube Spacebar pausing
ID bkpindoeklkmcchcidehelnihghppcdg
URL Oficial https://chrome.google.com/webstore/detail/youtube-spacebar-pausing/bkpindoeklkmcchcidehelnihghppcdg
Descripción Pause videos on page load with the space bar
Tamaño del Archivo 23.57 KB
Cantidad de Instalaciones 28
Versión Actual 1.3.0
Última Actualización 2016-07-05
Fecha de Publicación 2016-07-05
Calificación 3.38/5 Total de 13 Calificaciones
Desarrollador D3.io
Tipo de Pago free
Sitio Web de la Extensión https://www.d3.io
URL de la Página de Ayuda https://www.d3.io/contact
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Spacebar pausing",
    "version": "1.3.0",
    "description": "Pause videos on page load with the space bar",
    "icons": {
        "48": "Icons\/Icon48.png",
        "128": "Icons\/Icon128.png"
    },
    "author": "D3T Digital",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "short_name": "YouTube Spacebar pausing",
    "web_accessible_resources": [
        "Icons\/*"
    ]
}