Video Speed Control

Video Speed Control

When speed is not enough! Control the speed of your favorite videos: Slower or faster. You are "the only one who decides"!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0.1",
  "version_name": "2.0.1 sunshines",
  "name": "Video Speed Control",
  "short_name": "batressc-vsc",
  "description": "When speed is not enough! Control the speed of your favorite videos: Slower or faster. You are \"the only one who decides\"!",
  "author": "Luis Gustavo Fernández Batres",
  "homepage_url": "https://blog.batressc.com/video-speed-control-2-0-1-sunshine",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/scripts/refresh-speed.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/16x16_video_speed_control.png",
    "32": "/images/32x32_video_speed_control.png",
    "48": "/images/48x48_video_speed_control.png",
    "128": "/images/128x128_video_speed_control.png"
  },
  "action": {
    "default_popup": "popup-main.html",
    "default_icon": {
      "16": "/images/16x16_disabled_video_speed_control.png",
      "32": "/images/32x32_disabled_video_speed_control.png",
      "48": "/images/48x48_disabled_video_speed_control.png",
      "128": "/images/128x128_disabled_video_speed_control.png"
    }
  }
}