YouTube Play Next

YouTube Play Next

You can choose one of suggested videos to be played next automatically after correct video finishes. NOTE: YouTube has also introduced this feature on their website itself, don't forget to explore that too.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Queue",
  "description": "Enable YouTube Queue - To enable PlayNext button on suggested videos",
  "version": "1.7.0",
  "icons": {
    "96": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.khanacademy.org/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options/index.html"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "icons/playnexticon.png",
    "icons/playnexticon-dark-theme.png"
  ]
}