Block Fox News

Block Fox News

Blocks foxnews.com and disables links to Fox News from all sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Block Fox News",
  "description": "Blocks foxnews.com and disables links to Fox News from all sites",
  "version": "1.0.2",
  "action": {
    "default_icon": {
      "16": "icons/block-fox-news-16.png",
      "32": "icons/block-fox-news-32.png",
      "48": "icons/block-fox-news-48.png",
      "128": "icons/block-fox-news-128.png",
      "800": "icons/block-fox-news.png"
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*.foxnews.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "scripts/generic-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  }
}