LearnWorlds Video Speed Controller

LearnWorlds Video Speed Controller

Allows users to control the playback speed of their video courses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.0.1",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "webNavigation"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "browser_action": {
    "default_icon": "images/icon-16.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "scripts/vimeo.js"
      ],
      "matches": [
        "*://vimeo.com/*",
        "*://player.vimeo.com/*"
      ],
      "run_at": "document_end"
    }
  ]
}