Drumpfinator Extreme Edition

Drumpfinator Extreme Edition

Find and replace all instances of some word/name by another. Search Browser online tool for Chrome. Based on Trump blocker/filter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "5.6",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlKFkKQQmtB0HkDWvbxYf0NsK8DDLdaxyf/P5zpr1wK2SXAHuIArWSt6XmtO/LgDRx2K1TaOBGblwfrlej3JP2yJKueR0LPnnMy3j3zUQHRswBQ7nxR/lvNydmmzB7WEuoEO5UuiEisMawNGWry9NERKCh7N3cCVPF0w8ftOnhaIeC5bpK23JIimNl/vT19JiO7YJY/5+EMnGai8BAYXxPUdjx7eIfhbwh0bp4EGF9Z8ISWhBvnOYI5M6lpVZwGOrzhHe8p4T1+GXfNzZQfnrex9+nrgOEKrHnrKs2ND8rI0fZvs7HDAkcl3ukXm+1fDP5dJ8DFOBVIx6Hj/RGxMNfwIDAQAB",
  "options_page": "options/index.html",
  "action": {
    "default_title": "__MSG_chrome_extension_name__",
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "notifications",
    "contextMenus",
    "unlimitedStorage",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.wwevents.fun/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "myScript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "js/*",
        "options/*",
        "css/*",
        "html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}