Simple Performance Bar

Simple Performance Bar

Simple site performance bar that presents network, server, client and pageload times

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Performance Bar",
  "description": "Simple site performance bar that presents network, server, client and pageload times",
  "version": "1.0",
  "icons": {
    "128": "simplePerfBar128x128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "simplePerfBar.css"
      ],
      "js": [
        "simplePerfBar.js"
      ]
    }
  ]
}