Keyboard Shortcuts for HBO Max

Use keyboard shortcuts on HBO Max

Was ist Keyboard Shortcuts for HBO Max?

Keyboard Shortcuts for HBO Max ist eine Chrome-Erweiterung, die von bigcartoonjay entwickelt wurde, und ihr Hauptmerkmal ist "Use keyboard shortcuts on HBO Max".

Erweiterungsscreenshots

screenshot

Keyboard Shortcuts for HBO Max-Erweiterungs-CRX-Datei herunterladen

Laden Sie Keyboard Shortcuts for HBO Max-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Keyboard Shortcuts for HBO Max Keyboard Shortcuts for HBO Max
ID hoojchigglbjpglngfnhbdfnfhiddnno
Offizielle URL https://chromewebstore.google.com/detail/keyboard-shortcuts-for-hb/hoojchigglbjpglngfnhbdfnfhiddnno
Beschreibung Use keyboard shortcuts on HBO Max
Dateigröße 40.15 KB
Installationsanzahl 187
Aktuelle Version 1.0
Letztes Update 2021-09-26
Veröffentlichungsdatum 2021-09-23
Bewertung 4.50/5 Insgesamt 4 Bewertungen
Entwickler bigcartoonjay
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}