ScrewMyCode.in: Pitch control for YouTube

ScrewMyCode.in: Pitch control for YouTube

Slow down and speed up videos directly on YouTube like you would on a turntable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.4.0",
  "name": "ScrewMyCode.in: Pitch control for YouTube",
  "short_name": "ScrewMyCode.in",
  "description": "Slow down and speed up videos directly on YouTube like you would on a turntable.",
  "icons": {
    "128": "assets/icon-128.png"
  },
  "action": {
    "default_icon": {
      "128": "assets/icon-128.png"
    },
    "default_title": "ScrewMyCode.in",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}