netmonitor

netmonitor

shows network usage of webpages when the browser doesn't

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "netmonitor",
  "description": "shows network usage of webpages when the browser doesn't",
  "version": "0.0.4",
  "background": {
    "scripts": [
      "static/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "static/off.png",
    "default_popup": "static/popup.html"
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    "static/off.png",
    "static/on.gif"
  ]
}