Page diagnostics for SharePoint

Page diagnostics for SharePoint

A tool to identify page performance problems in SharePoint Online

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_AppName__",
  "short_name": "SPPageDiag",
  "version": "2.1.7",
  "manifest_version": 2,
  "author": "Microsoft",
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "128": "images/icon128.png"
    },
    "default_popup": "./popup.html"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "sp-page-diagnostics-background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "sp-page-diagnostics-content-script-entry.js"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "__MSG_Description__",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "128": "images/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "webNavigation",
    "downloads",
    "tabs",
    "activeTab",
    "debugger",
    "webRequest",
    "webRequestBlocking",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "classic/contentScript/pageNetwork.js",
    "classic/contentScript/registerListener.js",
    "classic/jquery/jquery.min.js",
    "modern-injected-script.js",
    "classic-injected-script.js",
    "sp-page-diagnostics-content-script-entry.js",
    "sp-page-diagnostics-content-script-core.js"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}