HBO Enhanced

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

Qu'est-ce que HBO Enhanced ?

HBO Enhanced est une extension Chrome développée par nrobinson, et sa fonction principale est "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension HBO Enhanced

Téléchargez les fichiers d'extension HBO Enhanced au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom HBO Enhanced HBO Enhanced
ID kibhmcdemphikjllndhmdjfailnllbjo
URL Officiel https://chromewebstore.google.com/detail/hbo-enhanced/kibhmcdemphikjllndhmdjfailnllbjo
Description A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.
Taille du Fichier 8.46 KB
Nombre d'Installations 2,421
Version Actuelle 0.4
Dernière Mise à Jour 2020-05-05
Date de Publication 2020-05-05
Évaluation 4.14/5 Total 7 Évaluations
Développeur nrobinson
Type de Paiement free
URL de la Page d'Aide https://github.com/nrobinson12/hbo-now-enhanced
Langues Prises en Charge 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"
    ]
}