Keyboard Shortcuts for HBO Max
Use keyboard shortcuts on HBO Max
Qu'est-ce que Keyboard Shortcuts for HBO Max ?
Keyboard Shortcuts for HBO Max est une extension Chrome développée par bigcartoonjay, et sa fonction principale est "Use keyboard shortcuts on HBO Max".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Keyboard Shortcuts for HBO Max
Téléchargez les fichiers d'extension Keyboard Shortcuts for HBO Max au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Keyboard Shortcuts for HBO Max |
ID | hoojchigglbjpglngfnhbdfnfhiddnno |
URL Officiel | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-hb/hoojchigglbjpglngfnhbdfnfhiddnno |
Description | Use keyboard shortcuts on HBO Max |
Taille du Fichier | 40.15 KB |
Nombre d'Installations | 187 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-09-26 |
Date de Publication | 2021-09-23 |
Évaluation | 4.50/5 Total 4 Évaluations |
Développeur | bigcartoonjay |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |