HBO Enhanced

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

Τι είναι το HBO Enhanced;

Το HBO Enhanced είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nrobinson, και η κύρια λειτουργία του είναι "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης HBO Enhanced

Λήψη αρχείων επέκτασης HBO Enhanced σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HBO Enhanced HBO Enhanced
ID kibhmcdemphikjllndhmdjfailnllbjo
Επίσημο URL https://chromewebstore.google.com/detail/hbo-enhanced/kibhmcdemphikjllndhmdjfailnllbjo
Περιγραφή A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.
Μέγεθος Αρχείου 8.46 KB
Αριθμός Εγκαταστάσεων 2,421
Τρέχουσα Έκδοση 0.4
Τελευταία Ενημέρωση 2020-05-05
Ημερομηνία Δημοσίευσης 2020-05-05
Αξιολόγηση 4.14/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής nrobinson
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/nrobinson12/hbo-now-enhanced
Υποστηριζόμενες Γλώσσες 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"
    ]
}