Youtube Speed Control Hotkeys

Youtube Speed Control Hotkeys

Allows you to customize your own speed control hotkeys in Youtube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Speed Control Hotkeys",
  "version": "1.0.21",
  "description": "Allows you to customize your own speed control hotkeys in Youtube",
  "icons": {
    "128": "/images/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "contentScript.js",
        "videoViewContent.js",
        "shortsViewContent.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3
}