WebAnalyzer

WebAnalyzer

Free Page Speed Testing Tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WebAnalyzer",
  "description": "Free Page Speed Testing Tool",
  "version": "1.0.0",
  "icons": {
    "128": "CE-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "ce-16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs"
  ]
}