SchoolSafe Youtube: Hide Suggested Videos

SchoolSafe Youtube: Hide Suggested Videos

Automatically hide suggested videos & comments when using Youtube. Prevent distractions from interfering with your lesson plans.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0",
  "name": "SchoolSafe Youtube: Hide Suggested Videos",
  "short_name": "SchoolSafe Youtube",
  "description": "Automatically hide suggested videos & comments when using Youtube. Prevent distractions from interfering with your lesson plans.",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "blockSuggestions.js"
      ]
    }
  ],
  "permissions": [
    "*://*.youtube.com/*",
    "tabs",
    "webNavigation"
  ]
}