Reduce wast of time on YouTube

Reduce wast of time on YouTube

Prevent the wast of time in YouTube. By deleting all suggestions and youtube shorts, you prevent yourself watching useless videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reduce wast of time on YouTube",
  "description": "Prevent the wast of time in YouTube. By deleting all suggestions and youtube shorts, you prevent yourself watching useless videos.",
  "version": "1.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}