Firewall Trump

Firewall Trump

The Firewall Trump extension delivers a beautiful Trump–Free Internet experience. If he’s building a wall, we’ll build a firewall.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Firewall Trump",
  "version": "1.3",
  "description": "The Firewall Trump extension delivers a beautiful Trump–Free Internet experience. If he’s building a wall, we’ll build a firewall.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "websiteBlocker.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ]
}