CoronaBlocker

CoronaBlocker

Get rid of coronavirus! I will replace for you everywhere the 'coronavirus' with 'love' (or any other word you choose...)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "name": "CoronaBlocker",
  "version": "1.0.1",
  "description": "Get rid of coronavirus! I will replace for you everywhere the 'coronavirus' with 'love' (or any other word you choose...)",
  "icons": {
    "16": "images/icons/icon_16.png",
    "48": "images/icons/icon_48.png",
    "128": "images/icons/icon_128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icons/icon_16.png",
      "24": "images/icons/icon_24.png",
      "32": "images/icons/icon_32.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "blocker.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "exclude_matches": [
        "http://blockthecorona.com/*",
        "https://blockthecorona.com/*",
        "http://www.blockthecorona.com/*",
        "https://www.blockthecorona.com/*",
        "https://api.whatsapp.com/*",
        "https://telegram.me/*",
        "https://www.facebook.com/sharer/*",
        "https://twitter.com/intent/*",
        "https://www.paypal.com/*"
      ]
    }
  ]
}