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.

Cos'è Pause HBO?

Pause HBO è un'estensione di Chrome sviluppata da http://helloleia.com, e la sua funzione principale è "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pause HBO

Scarica i file di estensione Pause HBO in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pause HBO Pause HBO
ID obkkopdjeglmehankcafionjnhdffjgd
URL Ufficiale https://chrome.google.com/webstore/detail/pause-hbo/obkkopdjeglmehankcafionjnhdffjgd
Descrizione A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.
Dimensione del File 119 KB
Conteggio Installazioni 44
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-01-23
Data di Pubblicazione 2020-01-19
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore http://helloleia.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://helloleia.com/privacy
Lingue Supportate 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"
        ]
    }
}