HTML5 Video Speed Controls

HTML5 Video Speed Controls

Speed controller for all video players. Simply speed up, slow down and other options

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "32": "media/logo_32.png",
    "48": "media/logo_48.png",
    "128": "media/logo_128.png",
    "196": "media/logo_16.png"
  },
  "manifest_version": 2,
  "options_page": "options.htm",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "name": "HTML5 Video Speed Controls",
  "default_locale": "en",
  "description": "Speed controller for all video players. Simply speed up, slow down and other options",
  "browser_action": {
    "default_icon": "media/logo_128.png",
    "default_popup": "options.htm"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "styles/content.css"
      ],
      "exclude_matches": [
        "https://plus.google.com/hangouts/*",
        "https://hangouts.google.com/hangouts/*",
        "https://meet.google.com/*",
        "https://teamtreehouse.com/*",
        "http://www.hitbox.tv/*"
      ],
      "js": [
        "js_folder/VideoCtrl.js",
        "js_folder/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "styles/*.css",
    "js/*.js"
  ],
  "version": "1.0"
}