HTML5 Video Keyboard Shortcuts

HTML5 Video Keyboard Shortcuts

Add keyboard support to Chrome's native HTML5 video player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "__MSG_extName__",
  "short_name": "__MSG_shrtExtName__",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "version": "4.1.5",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "page.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "contextMenus",
    "storage"
  ]
}