Stop Autoplay for Youtube™

Stop Autoplay for Youtube™

Eases your YouTube™ experience through stopping the autoplay. This version doesn't automatically start Videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stop Autoplay for Youtube™",
  "version": "4.1.0",
  "manifest_version": 2,
  "description": "Eases your YouTube™ experience through stopping the autoplay. This version doesn't automatically start Videos.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "author": "Jacob „kurtextrem\" Groß",
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/*",
        "http://youtube.com/*",
        "https://www.youtube.com/*",
        "https://youtube.com/*"
      ],
      "js": [
        "start.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "main.js"
  ],
  "minimum_chrome_version": "42"
}