Salesforce Page Optimizer

Salesforce Page Optimizer

Analyze, debug, and improve the performance of your Lightning application (Developer Preview)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Salesforce Page Optimizer",
  "short_name": "PO",
  "author": "Salesforce",
  "description": "Analyze, debug, and improve the performance of your Lightning application (Developer Preview)",
  "version": "2.1.0",
  "icons": {
    "16": "images/icons/icon_256.png",
    "48": "images/icons/icon_256.png",
    "96": "images/icons/icon_256.png",
    "128": "images/icons/icon_256.png",
    "256": "images/icons/icon_256.png",
    "512": "images/icons/icon_256.png"
  },
  "background": {
    "service_worker": "dist/background.js",
    "type": "module"
  },
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "match_about_blank": false,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/content.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/*.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; worker-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "action": {
    "default_icon": {
      "16": "images/icons/icon_256.png",
      "20": "images/icons/icon_256.png",
      "40": "images/icons/icon_256.png",
      "48": "images/icons/icon_256.png",
      "96": "images/icons/icon_256.png",
      "128": "images/icons/icon_256.png",
      "256": "images/icons/icon_256.png",
      "512": "images/icons/icon_256.png"
    },
    "default_popup": "viewer.html?width=800px&height=600px"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "storage",
    "contextMenus",
    "webRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}