Sonar Web Extension

Sonar Web Extension

Sonar's Salesforce and Pardot explorer extension: Great for navigating your Salesforce and Pardot metadata with Sonar constantly by…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "$schema": "http://json.schemastore.org/chrome-manifest",
  "manifest_version": 3,
  "name": "Sonar Web Extension",
  "author": "Sonar Software",
  "version": "2.0.1",
  "description": "",
  "icons": {
    "16": "png/16.png",
    "48": "png/48.png",
    "128": "png/128.png",
    "512": "png/logo512.png"
  },
  "action": {
    "default_icon": {
      "16": "png/16.png",
      "48": "png/48.png",
      "128": "png/128.png",
      "512": "png/logo512.png"
    },
    "default_popup": "popup.html",
    "default_title": "Sonar Web Extension"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [
        "*://preview.pardot.com/*"
      ],
      "match_about_blank": true,
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.lightning.force.com/*",
        "http://localhost:3000/*",
        "http://*.localhost:3000/*",
        "https://*.seesonar.com/*",
        "https://*.staging-seesonar.com/*",
        "https://*.pardot.com/*"
      ],
      "run_at": "document_idle",
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.salesforce.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "png/logo.png",
        "png/48.png",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "pardot-sync.html*"
      ],
      "matches": []
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "offscreen",
    "tabs",
    "storage",
    "webNavigation",
    "webRequest"
  ],
  "host_permissions": [
    "http://*.localhost:3000",
    "http://localhost:3000",
    "https://*.seesonar.com/*",
    "https://*.pardot.com/*"
  ]
}