No AutoPlay YT Channel Page

No AutoPlay YT Channel Page

Disable auto-play on YouTube channel page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "click.js"
      ]
    }
  ],
  "manifest_version": 2,
  "name": "No AutoPlay on YouTube Channel Page",
  "permissions": [
    "webNavigation",
    "https://www.youtube.com/*"
  ],
  "version": "4"
}