HBO Max Hotkeys
Extension allows using keyboard shortcuts on HBO Max.
什么是HBO Max Hotkeys?
HBO Max Hotkeys是由TheBestChromeExtensions开发的Chrome扩展程序,该扩展的主要功能是“Extension allows using keyboard shortcuts on HBO Max.”。
扩展截图
下载HBO Max Hotkeys扩展crx文件
下载HBO Max Hotkeys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Say goodbye to mouse clicking: use your keyboard as a remote and control the HBO Max player.
How does it work? It’s simple- use keyboard shortcuts:
- Rewind 15 seconds (left arrow)
- Fast forward 15 seconds (right arrow)
- Increase volume (up arrow)
- Decrease volume (down arrow)
- Go full screen (F)
All you need to do is add the HBO Max Hotkeys extension to your browser, enable the keyboard shortcuts using a built-in toggle and control the HBO Max player without any clicks. It's as simple as that!
Disclaimer: HBO is a trademark of Home Box Office, Inc. This website & extension hold no association or affiliation with HBO Max or any third-party companies. 扩展基本信息
| 名称 | |
| ID | gbbcblgjbfgamjghehalljfbimljlcap |
| 官方URL | https://chromewebstore.google.com/detail/hbo-max-hotkeys/gbbcblgjbfgamjghehalljfbimljlcap |
| 简介 | Extension allows using keyboard shortcuts on HBO Max. |
| 文件大小 | 153 KB |
| 安装次数 | 377 |
| 当前版本 | 1.5.14 |
| 更新时间 | 2024-03-04 |
| 上架时间 | 2022-04-08 |
| 评分 | 4.67/5 共6次评分 |
| 开发者 | TheBestChromeExtensions |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://vodextended.com/hbo/ |
| 隐私政策页面URL | https://www.vodextended.com/privacy_policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "HBO Max Hotkeys",
"description": "Extension allows using keyboard shortcuts on HBO Max.",
"version": "1.5.14",
"manifest_version": 3,
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.hbomax.com\/*",
"*:\/\/*.max.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": "HBOMax128HotKey.png"
},
"content_scripts": [
{
"js": [
"value.js",
"engine.js",
"hbomax.min.js"
],
"matches": [
"*:\/\/*.hbomax.com\/*"
]
},
{
"js": [
"value.js",
"contentMax.js",
"max.min.js"
],
"matches": [
"*:\/\/*.max.com\/*"
]
}
],
"icons": {
"36": "HBOMax36HotKey.png",
"128": "HBOMax128HotKey.png"
},
"background": {
"service_worker": "background.js"
}
} | |