Network Monitor

Show all requests made by the current visited website.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "NetworkMonitor",
  "version": "3.0.1",
  "description": "Network Monitor",
  "browser_action": {
    "browser_style": true,
    "default_popup": "Distribution/Popup/index.html",
    "default_icon": {
      "64": "logo/logo-64.png"
    }
  },
  "background": {
    "scripts": [
      "Distribution/Background/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "Distribution/Content/content.js"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "strict_min_version": "61.0"
    }
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "contextMenus",
    "storage",
    "tabs",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "webNavigation"
  ],
  "web_accessible_resources": [
    "Distribution/Background/*.{js}",
    "Distribution/Content/*.{js}",
    "Distribution/Popup/*.{html,js,jpg,ttf,png}",
    "Distribution/Dashboard/*.{html,js,jpg,ttf,png}",
    "Distribution/logo/logo-64.png"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}