HBO Enhanced

A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.

Wat is HBO Enhanced?

HBO Enhanced is een Chrome-extensie ontwikkeld door nrobinson, en de belangrijkste functie is "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie HBO Enhanced

Download HBO Enhanced-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension adds shortcuts and fixes to HBO Now and HBO Go.

Features:
  - Right arrow skips forward 10 seconds on streams (left arrow skips backward)
  - Up arrow turns volume on site up (down arrow turns volume down)

Fixes:
  - Clicking space bar to pause no longer scrolls down the page

With more updates coming!

Disclaimer:
HBO, HBO Now, and HBO Go are trademarks of Home Box Office, Inc. This application and its developer are in no way affiliated with Home Box Office, Inc.                    

Basisinformatie over de Extensie

Naam HBO Enhanced HBO Enhanced
ID kibhmcdemphikjllndhmdjfailnllbjo
Officiële URL https://chromewebstore.google.com/detail/hbo-enhanced/kibhmcdemphikjllndhmdjfailnllbjo
Beschrijving A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.
Bestandsgrootte 8.46 KB
Aantal Installaties 2,421
Huidige Versie 0.4
Laatst Bijgewerkt 2020-05-05
Publicatiedatum 2020-05-05
Beoordeling 4.14/5 Totaal 7 Beoordelingen
Ontwikkelaar nrobinson
Betalingswijze free
Help Pagina-URL https://github.com/nrobinson12/hbo-now-enhanced
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HBO Enhanced",
    "description": "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.",
    "version": "0.4",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.hbonow.com\/*",
                "https:\/\/play.hbogo.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}