HBO Enhanced

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

Co je HBO Enhanced?

HBO Enhanced je rozšíření Chrome vyvinuté nrobinson, a jeho hlavní funkcí je „A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření HBO Enhanced

Stáhněte si soubory rozšíření HBO Enhanced ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název HBO Enhanced HBO Enhanced
ID kibhmcdemphikjllndhmdjfailnllbjo
Oficiální URL https://chromewebstore.google.com/detail/hbo-enhanced/kibhmcdemphikjllndhmdjfailnllbjo
Popis A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.
Velikost souboru 8.46 KB
Počet instalací 2,421
Aktuální Verze 0.4
Poslední Aktualizace 2020-05-05
Datum Vydání 2020-05-05
Hodnocení 4.14/5 Celkem 7 Hodnocení
Vývojář nrobinson
Typ Platby free
URL Stránky Nápovědy https://github.com/nrobinson12/hbo-now-enhanced
Podporované Jazyky 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"
    ]
}