URL Cleaner

URL Cleaner

Remove unwanted '&list=...' from YouTube™ video links so that only the selected video plays and not the whole default playlist.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "URL Cleaner",
  "description": "Remove unwanted '&list=...' from YouTube™ video links so that only the selected video plays and not the whole default playlist.",
  "version": "1.1",
  "icons": {
    "16": "YUC_icon16.png",
    "48": "YUC_icon48.png",
    "128": "YUC_icon128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://www.youtube.com/*"
  ],
  "browser_action": {
    "default_icon": "YUC_icon128.png",
    "default_popup": "YUC_options.html"
  },
  "background": {
    "scripts": [
      "YUC_script.js"
    ]
  }
}