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.
¿Qué es YouTube - Pause with Space Properly?
YouTube - Pause with Space Properly es una extensión de Chrome desarrollada por James Forsyth, y su función principal es "Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.".
Descargar Archivo CRX de la Extensión YouTube - Pause with Space Properly
Descarga archivos de extensión YouTube - Pause with Space Properly 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
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.
Información Básica de la Extensión
Nombre | |
ID | cdidekkahbpdfkaegopcnpkobibblmof |
URL Oficial | https://chrome.google.com/webstore/detail/youtube-pause-with-space/cdidekkahbpdfkaegopcnpkobibblmof |
Descripción | Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling. |
Tamaño del Archivo | 19.83 KB |
Cantidad de Instalaciones | 151 |
Versión Actual | 1.0.0 |
Última Actualización | 2017-12-13 |
Fecha de Publicación | 2017-12-13 |
Calificación | 3.80/5 Total de 10 Calificaciones |
Desarrollador | James Forsyth |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |