Examine source code of MPExtension: Matterport Side Panel Toolbox

Inspect and view changes in MPExtension: Matterport Side Panel Toolbox 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": "MPExtension: Matterport Side Panel Toolbox",
  "version": "2024.12.12.1940",
  "description": "Enhance your Matterport dashboard workflow with MPExtension",
  "omnibox": {
    "keyword": "mpe"
  },
  "permissions": [
    "alarms",
    "storage",
    "scripting",
    "sidePanel",
    "downloads"
  ],
  "host_permissions": [
    "*://my.matterport.com/*",
    "*://mpextension.com/*"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon_16.png",
      "32": "icons/icon_32.png",
      "48": "icons/icon_48.png",
      "128": "icons/icon_128.png"
    }
  },
  "externally_connectable": {
    "matches": [
      "*://mpextension.com/*"
    ]
  },
  "background": {
    "service_worker": "scripts/b.js"
  },
  "side_panel": {
    "default_path": "pages/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://my.matterport.com/*",
        "*://mpextension.com/*"
      ],
      "js": [
        "scripts/c.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/mtx-style.css",
        "css/mt-style.css",
        "css/mp-style.css",
        "css/sidePanel-style.css",
        "css/popup-addons.css",
        "images/mp_logo.svg",
        "images/mt_logo.png",
        "images/mpe_logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}