Examine source code of ConstructionOnline Selection QuickPick

Inspect and view changes in ConstructionOnline Selection QuickPick 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,
  "name": "ConstructionOnline Selection QuickPick",
  "description": "Add product information directly from webpages as a selection choice to ConstructionOnline",
  "version": "0.0.1.5",
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "action": {
    "default_popup": "selectionpickerpopup.html",
    "default_icon": "/images/co_icon_16px.png",
    "default_title": "Selection Picker"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "/images/co_icon_16px.png",
    "128": "/images/co_badge_128px.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "https://code.jquery.com/jquery-3.6.3.min.js",
        "<all_urls>"
      ],
      "js": [
        "/jquery-3.6.3.js",
        "/jquery-ui-1.13.2.custom/jquery-ui.min.js",
        "inject.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/selectionpicker.html",
        "/selectionpicker.js",
        "/selectionpickerpopup.html",
        "/selectionpicker.js",
        "/jquery-ui-1.13.2.custom/jquery-ui.min.js",
        "/jquery-3.6.3.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}