YT Watch Later Assist

YT Watch Later Assist

Bulk Add and Delete YouTube Watch Later and Liked videos automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YT Watch Later Assist",
  "description": "Bulk Add and Delete YouTube Watch Later and Liked videos automatically",
  "manifest_version": 3,
  "version": "3.6",
  "icons": {
    "16": "image/yt_watch_later_assit_32.png",
    "48": "image/yt_watch_later_assit_64.png",
    "128": "image/yt_watch_later_assit_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "image/yt_watch_later_assit_32.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "YT Watch Later Assist",
    "default_popup": "html/popup.html"
  },
  "background": {
    "service_worker": "js/scripts/service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "js/plugins/jquery3.6.1.min.js",
        "js/scripts/common.js",
        "js/scripts/content.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "webRequest"
  ]
}