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"
    ]
}