Remove YouTube Autoplay

Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Remove YouTube Autoplay",
  "description": "Isn't YouTube autoplay the worst? This removes it",
  "author": "krx",
  "version": "0.1.7",
  "host_permissions": [
    "http://www.youtube.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "js/disableAutoplay.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "img/icon_19.png"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png"
  }
}