Examine source code of netmonitor

Inspect and view changes in netmonitor source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
  ]
}