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 |
| Eメール | [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"
}
} | |