Video Enhancer for YouTube™

Video Enhancer for YouTube™

Increase playback rate up to 16x, boost the audio, adjust both the brightness and contrast and add various filters to your video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Video Enhancer for YouTube™",
  "version": "1.2.0",
  "action": {
    "default_popup": "popup.html"
  },
  "description": "Increase playback rate up to 16x, boost the audio, adjust both the brightness and contrast and add various filters to your video.",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/content-script.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ]
}