Disable YouTube Number Keyboard Shortcuts

Disable YouTube Number Keyboard Shortcuts

Disables 0-9 keyboard shortcuts on YouTube which seek to different times on a video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Disable YouTube Seek by Number",
  "version": "1.2",
  "description": "Disables the YouTube 0-9 keyboard shortcuts which seek to different times on a video",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.youtube-nocookie.com/*"
      ],
      "all_frames": true,
      "js": [
        "youtube-disable-number-seek.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{963aa3d4-c342-4dfe-872e-76be742d1bea}"
    }
  }
}