Youtube - Remove watched fixer

Youtube - Remove watched fixer

Actually remove watched Youtube videos from the Watch Later playlist

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube - Remove watched fixer",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Actually remove watched Youtube videos from the Watch Later playlist",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/playlist?list=WL"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "run_at": "document_end"
    }
  ]
}