Youtube AI Speed Adjuster

Youtube AI Speed Adjuster

Optimize YouTube viewing experience with intelligent, AI-driven speed adjustments tailored to video content types.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Youtube AI Speed Adjuster",
  "version": "0.51",
  "permissions": [
    "tabs",
    "storage",
    "notifications"
  ],
  "description": "Optimize YouTube viewing experience with intelligent, AI-driven speed adjustments tailored to video content types.",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "config.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}