Play Next

Play Next

Autoplay next video

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Play Next",
  "short_name": "Play Next",
  "description": "Autoplay next video",
  "version": "0.1.21",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Play Next - Settings",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "icon-16.png",
    "icon.svg"
  ]
}