Autoplay No More

Autoplay No More

Disable "play next video" feature on Youtube, TED, Bing and Vimeo.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Autoplay No More",
  "description": "Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.",
  "version": "0.4.2",
  "applications": {
    "gecko": {
      "id": "jid1-XQEcUtyD5PwB8w@jetpack",
      "strict_min_version": "42.0"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "author": "Daniel Kladnik",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "data/youtube.css"
      ],
      "js": [
        "data/youtube.js"
      ]
    },
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "css": [
        "data/vimeo.css"
      ],
      "js": [
        "data/vimeo.js"
      ]
    },
    {
      "matches": [
        "*://*.ted.com/*"
      ],
      "js": [
        "data/ted.js"
      ]
    },
    {
      "matches": [
        "*://*.bing.com/videos/*"
      ],
      "js": [
        "data/bing.js"
      ]
    }
  ]
}