Youtube Plus

Youtube Plus

Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Youtube Plus",
  "version": "1.0",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_title": "Youtube Plus",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "adskipper.js"
      ],
      "run_at": "document_start",
      "world": "MAIN"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "volumeInject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ]
}