HBO Enhanced

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

什麼是HBO Enhanced?

HBO Enhanced是由nrobinson開發的Chrome擴展程式,該擴展的主要功能是“A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.”。

擴展截圖

screenshot
screenshot

下載HBO Enhanced擴展crx文件

下載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
官方網址 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"
    ]
}