Salesforce Label Finder

Salesforce Label Finder

Salesforce Label Finder.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Salesforce Label Finder",
  "description": "Salesforce Label Finder.",
  "version": "1.0.2",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "cookies"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*.salesforce.com/*",
    "https://*.force.com/*",
    "https://*.cloudforce.com/*",
    "https://*.visualforce.com/*"
  ],
  "icons": {
    "16": "resources/icon16.png",
    "32": "resources/icon32.png",
    "48": "resources/icon48.png",
    "128": "resources/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.lightning.force.com/*"
      ],
      "js": [
        "modal-index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "resources/*.png",
        "resources/*.svg",
        "resources/*.gif"
      ],
      "matches": [
        "https://*.lightning.force.com/*",
        "https://*/*"
      ]
    }
  ]
}