COVID-19 Stats Chrome Extension

COVID-19 Stats Chrome Extension

COVID-19 Stats: A chrome extension to show the latest COVID-19 updates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "short_name": "COVID-19 Stats",
  "name": "COVID-19 Stats Chrome Extension",
  "version": "0.1.1",
  "description": "COVID-19 Stats: A chrome extension to show the latest COVID-19 updates.",
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "js/*",
    "html/*",
    "css/*"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}