Disable Numpad for Youtube

Disable Numpad for Youtube

Chrome extension to disable numpad on youtube to prevent accidental video skips

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Chrome extension to disable numpad on youtube to prevent accidental video skips",
  "version": "0.0.2",
  "name": "Disable Numpad for Youtube",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}