Corona Tracker

Corona Tracker

A Google Chrome extension for tracking CORONAVIRUS COVID-19 update

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Corona Tracker",
  "version": "1.3",
  "description": "A Google Chrome extension for tracking CORONAVIRUS COVID-19 update",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": {
      "16": "icon/[email protected]",
      "32": "icon/[email protected]",
      "48": "icon/[email protected]",
      "128": "icon/[email protected]"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon/[email protected]",
    "32": "icon/[email protected]",
    "48": "icon/[email protected]",
    "128": "icon/[email protected]"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "js/content.js"
      ]
    }
  ]
}