Correct Pause

Extension to fix YouTube Spacebar play/pause function

¿Qué es Correct Pause?

Correct Pause es una extensión de Chrome desarrollada por Aljo, y su función principal es "Extension to fix YouTube Spacebar play/pause function".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Correct Pause

Descarga archivos de extensión Correct Pause 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 extension was made by MrQuackDuck, not me (Aljo). The reason it's under my name is because I bought a chrome developer account, and offered to publish the extension while giving full credit to the original developer. 



After a recent update, YouTube is now having an issue with pressing Spacebar to play/pause the video after Alt+Tab and in cases when you're unfocused from the videoplayer. This browser extension is here to fix this.

Source code: https://github.com/MrQuackDuck/CorrectPause
Check out more stuff on https://justempire.net

Support mail: [email protected]                    

Información Básica de la Extensión

Nombre Correct Pause Correct Pause
ID bcbjldkfkgpipahfcghnjcmcjnhmigpg
URL Oficial https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg
Descripción Extension to fix YouTube Spacebar play/pause function
Tamaño del Archivo 8.39 KB
Cantidad de Instalaciones 366
Versión Actual 1.6
Última Actualización 2024-01-26
Fecha de Publicación 2023-11-16
Calificación 4.60/5 Total de 20 Calificaciones
Desarrollador Aljo
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://justempire.net
URL de la Página de Ayuda https://github.com/MrQuackDuck/CorrectPause
URL de la Página de Política de Privacidad https://justempire.net/en/service/14/correct-youtube-pause
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Correct Pause",
    "version": "1.6",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/youtube.com\/*"
    ],
    "description": "Extension to fix YouTube Spacebar play\/pause function",
    "icons": {
        "32": "icons\/correctPause-32.png",
        "48": "icons\/correctPause-48.png",
        "64": "icons\/correctPause-64.png",
        "128": "icons\/correctPause-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "correctPause.js"
            ]
        }
    ]
}