Time Feature

Time Feature

Times how long it takes to send a message to a content script and back.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Time Feature",
  "version": "1.4",
  "description": "Times how long it takes to send a message to a content script and back.",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "page.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Time Feature",
    "default_icon": "clock.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}