Video Speed Lord

Video Speed Lord

This extension allow you to control the speed of the video playing. Feel like a time lord!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Video Speed Lord",
  "description": "This extension allow you to control the speed of the video playing. Feel like a time lord!",
  "version": "1.0",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "myscript.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Click here!"
  },
  "permissions": [
    "activeTab",
    "debugger",
    "tabs",
    "https://ajax.googleapis.com/"
  ]
}