Stop Video Download For YouTube

Stop Video Download For YouTube

Adds a Stop Video button on YouTube which lets you stop the video from downloading.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "homepage_url": "http://www.thelacunablog.com/stop-download-youtube-videos.html",
  "description": "Adds a Stop Video button on YouTube which lets you stop the video from downloading.",
  "name": "Stop Video Download For YouTube",
  "version": "1.3",
  "manifest_version": 2,
  "icons": {
    "16": "images/stop16.png",
    "48": "images/stop48.png",
    "128": "images/stop.png"
  },
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "stopdownload.js"
  ]
}