Video Speed Controller for HTML videos

Video Speed Controller for HTML videos

Video speed control for all HTML5 video players. Simply speed up, slow down video using keyboard shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "minimum_chrome_version": "89",
  "name": "__MSG_name__",
  "icons": {
    "48": "images/logo48.png",
    "64": "images/logo64.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 3,
  "description": "__MSG_desc__",
  "action": {
    "default_icon": {
      "48": "images/logo48.png",
      "64": "images/logo64.png"
    },
    "default_popup": "html/pp.html"
  },
  "version": "1.0.2",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "styles/cnt.css",
        "styles/shade.css"
      ],
      "matches": [
        "file:///*",
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "styles/cnt.css"
      ],
      "js": [
        "js/cnt.js"
      ]
    }
  ],
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  }
}