YouTube Speed Controls

YouTube Speed Controls

Click ` (the grave accent key) to flick between normal and 2x speed, or ctrl + ` to play at 3x speed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube Speed Controls",
  "description": "Click ` (the grave accent key) to flick between normal and 2x speed, or ctrl + ` to play at 3x speed.",
  "version": "1.3",
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "src/javascript/script.js"
      ],
      "css": [
        "src/css/styles.css"
      ]
    }
  ],
  "icons": {
    "16": "src/images/icon16.png",
    "48": "src/images/icon48.png",
    "128": "src/images/icon128.png"
  }
}