VSC - Video Speed Controller

VSC - Video Speed Controller

Speed control for any html5 video player: speed up, slow down, rewind ...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "128": "/pic/icon.png"
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "/worker/index.js"
    ]
  },
  "options_page": "/option/index.html",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "name": "__MSG_appName__",
  "default_locale": "en",
  "description": "Speed control for any html5 video player: speed up, slow down, rewind ...",
  "browser_action": {
    "default_icon": "/pic/icon.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "/inject/style/basic.css",
        "/inject/style/platform.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": [
        "/lib/jq.min.js",
        "/inject/script/synodal.js",
        "/inject/script/abUsable.js",
        "/inject/script/t_rispinose.js",
        "/inject/script/pseudoscopy.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "/inject/**"
  ],
  "version": "1.0.1"
}