NetMeter Web

NetMeter Web

Web Data Consumption Monitor Extension: Stay Informed About Site Bandwidth Usage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NetMeter Web",
  "version": "0.0.1.3",
  "description": "Web Data Consumption Monitor Extension: Stay Informed About Site Bandwidth Usage",
  "icons": {
    "128": "public/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "public/*",
        "assets/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "ws://*/*",
    "wss://*/*"
  ],
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": "public/icon-34.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ],
      "run_at": "document_start"
    }
  ]
}