Youtube Video Blocker

Youtube Video Blocker

Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Video Blocker",
  "version": "0.1",
  "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "block_youtube_vids.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "manifest_version": 2
}