HBO Enhanced

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

Was ist HBO Enhanced?

HBO Enhanced ist eine Chrome-Erweiterung, die von nrobinson entwickelt wurde, und ihr Hauptmerkmal ist "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.".

Erweiterungsscreenshots

screenshot
screenshot

HBO Enhanced-Erweiterungs-CRX-Datei herunterladen

Laden Sie HBO Enhanced-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name HBO Enhanced HBO Enhanced
ID kibhmcdemphikjllndhmdjfailnllbjo
Offizielle URL https://chromewebstore.google.com/detail/hbo-enhanced/kibhmcdemphikjllndhmdjfailnllbjo
Beschreibung A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.
Dateigröße 8.46 KB
Installationsanzahl 2,421
Aktuelle Version 0.4
Letztes Update 2020-05-05
Veröffentlichungsdatum 2020-05-05
Bewertung 4.14/5 Insgesamt 7 Bewertungen
Entwickler nrobinson
Zahlungsart free
Hilfeseite URL https://github.com/nrobinson12/hbo-now-enhanced
Unterstützte Sprachen 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"
    ]
}