No Playlist Autoplay For YouTube

No Playlist Autoplay For YouTube

With this extension, when you reach the end of a video in a playlist, the next video is prevented from playing automatically. You can toggle autoplay on and off. Refresh YouTube after toggling.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "author": "Thomas Richards",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "icons/Pause-32.png",
      "64": "icons/Pause-64.png",
      "128": "icons/Pause-128.png"
    },
    "default_title": "Toggle YouTube Playlist Autoplay"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.",
  "icons": {
    "128": "icons/Logo-128.png"
  },
  "name": "No Playlist Autoplay For YouTube",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "*://*.youtube.com/*"
  ],
  "version": "65535.65535.65535.8"
}