Dumb Stats

Dumb Stats

Monitor fun statistics about your web activity with Dumb Stats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dumb Stats",
  "version": "1.0",
  "description": "Monitor fun statistics about your web activity with Dumb Stats.",
  "permissions": [
    "tabs",
    "scripting",
    "storage"
  ],
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "/assets/icons/16.png",
      "24": "/assets/icons/24.png",
      "32": "/assets/icons/32.png"
    },
    "default_title": "Dumb Stats",
    "default_popup": "pages/popup/index.html"
  },
  "icons": {
    "16": "/assets/icons/16.png",
    "32": "/assets/icons/32.png",
    "128": "/assets/icons/128.png"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "content/import-index.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "content/index.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}