YouTube Kids Safe - Keeping kids safer on YT

YouTube Kids Safe - Keeping kids safer on YT

Block most activity on YouTube apart from the channels and videos you are happy for your kids to watch

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube Kids Safe - Keeping kids safer on YT",
  "description": "Block most activity on YouTube apart from the channels and videos you are happy for your kids to watch",
  "version": "1.0.1",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content-redirect.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webNavigation",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.youtube.com/"
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  }
}