Wattspeed

Wattspeed

Wattspeed is a browser extension that offers powerful web technologies insights each time you open a new web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wattspeed",
  "version": "4.4.0",
  "description": "Wattspeed is a browser extension that offers powerful web technologies insights each time you open a new web page.",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "48": "assets/icons/icon-48.png",
    "128": "assets/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "assets/scripts/helper.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "assets/icons/icon-48.png",
    "default_popup": "index.html",
    "default_title": "Wattspeed"
  },
  "permissions": [
    "tabs",
    "scripting",
    "activeTab",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}