Video Speed Up Controller for Chrome

Video Speed Up Controller for Chrome

Speed up or slow down the playback of online videos on any website with our Video Speed Up Controller for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "short_name": "__MSG_ext_short_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "version": "0.0.21",
  "action": {
    "default_icon": "icons/favicon-48x48.png",
    "default_popup": "popup.html",
    "default_title": "speed video control"
  },
  "icons": {
    "16": "icons/favicon-16x16.png",
    "32": "icons/favicon-32x32.png",
    "48": "icons/favicon-48x48.png",
    "192": "icons/favicon-192x192.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true
    }
  ],
  "options_page": "settings.html",
  "background": {
    "service_worker": "background.js"
  }
}