Keyboard Shortcuts for HBO Max

Use keyboard shortcuts on HBO Max

Cos'è Keyboard Shortcuts for HBO Max?

Keyboard Shortcuts for HBO Max è un'estensione di Chrome sviluppata da bigcartoonjay, e la sua funzione principale è "Use keyboard shortcuts on HBO Max".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Keyboard Shortcuts for HBO Max

Scarica i file di estensione Keyboard Shortcuts for HBO Max in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Keyboard Shortcuts for HBO Max Keyboard Shortcuts for HBO Max
ID hoojchigglbjpglngfnhbdfnfhiddnno
URL Ufficiale https://chromewebstore.google.com/detail/keyboard-shortcuts-for-hb/hoojchigglbjpglngfnhbdfnfhiddnno
Descrizione Use keyboard shortcuts on HBO Max
Dimensione del File 40.15 KB
Conteggio Installazioni 187
Versione Corrente 1.0
Ultimo Aggiornamento 2021-09-26
Data di Pubblicazione 2021-09-23
Valutazione 4.50/5 Totale 4 Valutazioni
Sviluppatore bigcartoonjay
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}