Youtube Trigger Warning

Youtube Trigger Warning

Hide triggering videos on Youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Trigger Warning",
  "description": "Hide triggering videos on Youtube.",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "background",
    "storage"
  ],
  "host_permissions": [
    "http://*.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "jQuery-3.6.0-production.js",
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "48": "yttwicon48.png",
    "128": "yttwicon128.png"
  }
}