Keyword Blocker

Keyword Blocker

Web Extension to block unwanted videos and channels

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Web Extension to block unwanted videos and channels",
  "version": "2.2.1",
  "name": "Keyword Blocker",
  "manifest_version": 2,
  "icons": {
    "16": "img/icon-16.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "38": "img/icon-38.png"
    },
    "default_title": "Keyword Blocker",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "css": [
        "styles/content_script.css"
      ],
      "js": [
        "content_script.bundle.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "*://www.youtube.com/*"
  ]
}