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.”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |