YT Playlist Quick Delete

YT Playlist Quick Delete

Adds a delete button directly on videos in your playlist. Saves you a few clicks since you won't have to use the action menu again!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YT Playlist Quick Delete",
  "version": "0.0.3",
  "description": "Adds a delete button directly on videos in your playlist. Saves you a few clicks since you won't have to use the action menu again!",
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  }
}