Less Youtube Time

Less Youtube Time

This addon removes all recommendations which Youtube offers (Sidebar/Endscreeen) == Focus on more important things in your life

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Daniel Oberlechner",
  "name": "Less Youtube Time",
  "version": "4.0.0",
  "description": "This addon removes all recommendations which Youtube offers (Sidebar/Endscreeen) == Focus on more important things in your life",
  "icons": {
    "512": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Less Youtube Time"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "site.js"
      ],
      "css": [
        "cleaner.css"
      ],
      "persistent": "true",
      "all_frames": true
    }
  ]
}