Website Performance Analyzer

Generate detailed performance analysis reports for websites.
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": "Website Performance Analyzer",
  "version": "1.0",
  "description": "Generate detailed performance analysis reports for websites.",
  "permissions": [
    "activeTab",
    "storage",
    "webRequest",
    "notifications",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "32": "icons/logo_32.png",
      "64": "icons/logo_64.png",
      "128": "icons/logo_128.png"
    }
  },
  "icons": {
    "32": "icons/logo_32.png",
    "64": "icons/logo_64.png",
    "128": "icons/logo_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{b03e6640-c5de-44ce-a31d-9b74dd226b00}"
    }
  }
}