Time Wasted Loading

Time Wasted Loading

"Time Wasted Loading" is a Chrome extension that calculates how much cumulative time has been wasted loading pages. It is useful…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Time Wasted Loading",
  "version": "1.0.4",
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "load_counter.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "favicon-16x16.png",
    "48": "favicon-48x48.png",
    "128": "favicon-128x128.png"
  },
  "browser_action": {
    "default_title": "Time Wasted Loading Web Pages",
    "default_popup": "popup.html"
  }
}