Keyboard Shortcuts for HBO Max

Use keyboard shortcuts on HBO Max

What is Keyboard Shortcuts for HBO Max?

Keyboard Shortcuts for HBO Max is a Chrome extension developed by bigcartoonjay, and its main feature is "Use keyboard shortcuts on HBO Max".

Extension Screenshots

screenshot

Download Keyboard Shortcuts for HBO Max Extension CRX File

Download Keyboard Shortcuts for HBO Max extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This simple Chrome Extension adds keyboard shortcuts to video playback on the HBO Max site.

Left/Right Arrows: Rewind or Fast Forward 10 seconds
CTRL+Left/Right Arrows: Rewind or Fast Forward 5 seconds (Note: on macOS, use OPTION+Arrow)
Up/Down Arrows: Adjust volume
F: Toggle flulscreen                    

Extension Basic Information

Name Keyboard Shortcuts for HBO Max Keyboard Shortcuts for HBO Max
ID hoojchigglbjpglngfnhbdfnfhiddnno
Official URL https://chromewebstore.google.com/detail/keyboard-shortcuts-for-hb/hoojchigglbjpglngfnhbdfnfhiddnno
Description Use keyboard shortcuts on HBO Max
File Size 40.15 KB
Installation Count 187
Current Version 1.0
Last Updated 2021-09-26
Publish Date 2021-09-23
Rating 4.50/5 Total 4 Ratings
Developer bigcartoonjay
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts for HBO Max",
    "version": "1.0",
    "description": "Use keyboard shortcuts on HBO Max",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.hbomax.com\/*",
                "http:\/\/localhost:5000\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "src\/js\/content.js"
            ]
        }
    ],
    "background": {
        "page": "src\/html\/index.html"
    },
    "icons": {
        "24": "src\/icon-24.png",
        "48": "src\/icon-48.png",
        "64": "src\/icon-64.png",
        "128": "src\/icon-128.png",
        "640": "src\/icon-640.png"
    },
    "web_accessible_resources": [
        "src\/js\/content.js",
        "src\/js\/hbomax.js",
        "src\/js\/config.js",
        "src\/js\/is-text-box.js",
        "src\/js\/ui-ready.js",
        "src\/js\/setup-keybinds.js"
    ]
}