YouTube - Pause with Space Properly

YouTube - Pause with Space Properly

Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube - Pause with Space Properly",
  "description": "Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.",
  "version": "1.0.0",
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "space.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "19": "space-19.png",
    "38": "space-38.png",
    "128": "space-128.png"
  }
}