Examine source code of ClickLearn UXP

Inspect and view changes in ClickLearn UXP source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "author": "ClickLearn ApS",
  "name": "ClickLearn UXP",
  "description": "ClickLearn User Experience Panel",
  "version": "3.0.0.6",
  "background": {
    "service_worker": "cl-bkg-uxp.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "cl-cs-uxp.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "cl-xhr-uxp.js"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "match_origin_as_fallback": true,
      "world": "MAIN"
    }
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": "cl-popup-uxp.html",
    "default_title": "ClickLearn User Experience Panel"
  },
  "icons": {
    "16": "icon.png",
    "24": "icon-24.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "scripting"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}