Keyboard controls for HBO Nordic web player

Adds simple keyboard controls to the HBO Nordic web player.

Cos'è Keyboard controls for HBO Nordic web player?

Keyboard controls for HBO Nordic web player è un'estensione di Chrome sviluppata da Tobias Emil Harbo, e la sua funzione principale è "Adds simple keyboard controls to the HBO Nordic web player.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Keyboard controls for HBO Nordic web player

Scarica i file di estensione Keyboard controls for HBO Nordic web player 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

                        Adds simple keyboard controls to the HBO Nordic web player enabling you to play/pause the video by pressing the space bar, control the volume with the up/down arrow keys, skipping with left/right arrows keys and number keys.

*** Version 2.1: ***
Includes:
 * Playback speed controls                    

Informazioni di Base sull'Estensione

Nome Keyboard controls for HBO Nordic web player Keyboard controls for HBO Nordic web player
ID emcdkbmoobfkkojdkncpejgmlhngokdc
URL Ufficiale https://chromewebstore.google.com/detail/keyboard-controls-for-hbo/emcdkbmoobfkkojdkncpejgmlhngokdc
Descrizione Adds simple keyboard controls to the HBO Nordic web player.
Dimensione del File 937 KB
Conteggio Installazioni 103
Versione Corrente 2.1
Ultimo Aggiornamento 2021-07-23
Data di Pubblicazione 2020-02-02
Valutazione 2.67/5 Totale 3 Valutazioni
Sviluppatore Tobias Emil Harbo
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard controls for HBO Nordic web player",
    "version": "2.1",
    "short_name": "HBO Nordic player keyboard controls",
    "description": "Adds simple keyboard controls to the HBO Nordic web player.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16_not_playing_out_of_focus.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.hbonordic.com\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "playback-rate.svg",
        "playback-rate-active.svg"
    ],
    "manifest_version": 2
}