Loading Timer

Loading Timer

Check loading time of any page!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "logo.png",
    "default_title": "Loading Timer",
    "default_popup": "popup.html"
  },
  "description": "Check loading time of any page!",
  "icons": {
    "128": "logo.png"
  },
  "manifest_version": 3,
  "name": "Loading Timer",
  "version": "1",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}