Pause HBO

A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.

¿Qué es Pause HBO?

Pause HBO es una extensión de Chrome desarrollada por http://helloleia.com, y su función principal es "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Pause HBO

Descarga archivos de extensión Pause HBO 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 app is really simple. It enables the pause and play toggle with the spacebar in the HBO app!

HBO makes awesome shows. But the HBO web app has a tiny, yet frustrating detail that drives me nuts. You cannot pause 
 or play with the spacebar. To make matters worse, hitting the spacebar exits full-screen mode. So, when you intuitively hit the spacebar to pause your show, you have to then click to pause and re-enter full-screen and it's a nightmare.                    

Información Básica de la Extensión

Nombre Pause HBO Pause HBO
ID obkkopdjeglmehankcafionjnhdffjgd
URL Oficial https://chrome.google.com/webstore/detail/pause-hbo/obkkopdjeglmehankcafionjnhdffjgd
Descripción A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.
Tamaño del Archivo 119 KB
Cantidad de Instalaciones 44
Versión Actual 1.0.0
Última Actualización 2020-01-23
Fecha de Publicación 2020-01-19
Calificación 4.00/5 Total de 4 Calificaciones
Desarrollador http://helloleia.com
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://helloleia.com/privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pause HBO",
    "description": "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.",
    "version": "1.0.0",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "page_action": {
        "default_icon": {
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        },
        "default_title": "HBO Tweak"
    },
    "permissions": [
        "*:\/\/es.hboespana.com\/*",
        "*:\/\/*.hbo.com\/*",
        "*:\/\/*.hbogo.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/es.hboespana.com\/*",
                "*:\/\/*.hbo.com\/*",
                "*:\/\/*.hbogo.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}