SF Explorer

SF Explorer

Productivity tool for Salesforce admins and devs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SF Explorer",
  "version": "4.0.8",
  "description": "Productivity tool for Salesforce admins and devs",
  "homepage_url": "https://chrome.google.com/webstore/detail/salesforce-explorer/eabpolgjfkpchgffbkiedgfemcgbnbde",
  "action": {
    "default_title": "Open SF Explorer",
    "default_popup": "popup.html",
    "default_icon": "icon_32.png"
  },
  "manifest_version": 3,
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "side_panel": {
    "default_path": "dist/explorer.html"
  },
  "permissions": [
    "cookies",
    "tabs",
    "scripting",
    "activeTab",
    "sidePanel",
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "https://*.salesforce.com/*",
    "https://*.force.com/*",
    "https://*.cloudforce.com/*",
    "https://*.visualforce.com/*"
  ],
  "optional_permissions": [
    "identity"
  ],
  "optional_host_permissions": [
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.svg",
        "dist/*",
        "popup.js",
        "loading.webp"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "open-explorer": {
      "description": "Open SF Explorer",
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      }
    },
    "open-compare": {
      "description": "Open SF Explorer Compare",
      "suggested_key": {
        "default": "Ctrl+Shift+C"
      }
    },
    "open-panel": {
      "description": "Open SF Explorer Panel",
      "suggested_key": {
        "default": "Ctrl+Shift+P"
      }
    },
    "show-lwc": {
      "description": "Show LWC"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.visual.force.com/*",
        "https://*.vf.force.com/*",
        "https://*.lightning.force.com/*",
        "https://*.cloudforce.com/*",
        "https://*.visualforce.com/*"
      ],
      "all_frames": true,
      "css": [],
      "js": [
        "popup.js",
        "content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "incognito": "split",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}