HTML5 Video Speed permanent Control

HTML5 Video Speed permanent Control

Speed controls for html5 video with memory effect.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HTML5 Video Speed permanent Control",
  "description": "Speed controls for html5 video with memory effect.",
  "short_name": "permanent Video Speed",
  "version": "1.0.2",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "speed_control.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}