Procrastination Killer

Procrastination Killer

Removes recommended videos from YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Procrastination Killer",
  "version": "1.0",
  "description": "Removes recommended videos from YouTube. (Literally just runs document.getElementById(\"secondary\").remove(); on any link with youtube.com/watch in it)",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch*"
      ],
      "js": [
        "pkill.js"
      ]
    }
  ]
}