PageLoad times

PageLoad times

Page Load Times

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PageLoad times",
  "description": "Page Load Times",
  "version": "2.0",
  "browser_action": {
    "default_icon": "images/icons/grey.png",
    "default_title": "Fully Loaded Time"
  },
  "background": {
    "scripts": [
      "jquery.min.js",
      "/background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "images/icons/16.png",
    "19": "images/icons/19.png",
    "38": "images/icons/38.png",
    "64": "images/icons/64.png",
    "128": "images/icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "myscript.js"
      ],
      "run_at": "document_start"
    }
  ]
}