CovHide-19

CovHide-19

Take a break from pandemic news! This extension attempts to hide blocks of text that include Coronavirus and COVID-19.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CovHide-19",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "19": "button-19.png",
      "38": "button-38.png"
    },
    "default_title": "Click to toggle hiding"
  },
  "description": "Take a break from pandemic news! This extension attempts to hide blocks of text that include Coronavirus and COVID-19."
}