Lightning Web Runtime (LWR) Build Info

Lightning Web Runtime (LWR) Build Info

For Salesforce Experience Cloud. Learn, Demo & Build Great LWR Sites. Get detailed information about components on the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lightning Web Runtime (LWR) Build Info",
  "description": "For Salesforce Experience Cloud. Learn, Demo & Build Great LWR Sites. Get detailed information about components on the page.",
  "author": "Craig Johnson",
  "version": "1.2.0",
  "icons": {
    "16": "logo/logo-16.png",
    "32": "logo/logo-32.png",
    "48": "logo/logo-48.png",
    "128": "logo/logo-128.png"
  },
  "action": {
    "default_title": "LWR Build Info",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "declarativeContent"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "js": [
        "foreground.js"
      ],
      "css": [
        "foreground.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}