Video Speed

Video Speed

Change the play speed of YouTube/Facebook/Vimeo/EggHead or ANY website using only your keyboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "27",
  "name": "__MSG_appName__",
  "short_name": "VideoSpeed",
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "version": "2.0.7",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content_scripts/styles/video-speed.css"
      ],
      "js": [
        "content_scripts/scripts/video_speed_content_scripts.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}