HBO Enhanced

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

Apa itu HBO Enhanced?

HBO Enhanced adalah ekstensi Chrome yang dikembangkan oleh nrobinson, dan fitur utamanya adalah "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi HBO Enhanced

Unduh file ekstensi HBO Enhanced dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama HBO Enhanced HBO Enhanced
ID kibhmcdemphikjllndhmdjfailnllbjo
URL Resmi https://chromewebstore.google.com/detail/hbo-enhanced/kibhmcdemphikjllndhmdjfailnllbjo
Deskripsi A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.
Ukuran File 8.46 KB
Jumlah Instalasi 2,421
Versi Saat Ini 0.4
Terakhir Diperbarui 2020-05-05
Tanggal Publikasi 2020-05-05
Penilaian 4.14/5 Total 7 Penilaian
Pengembang nrobinson
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/nrobinson12/hbo-now-enhanced
Bahasa yang Didukung 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"
    ]
}