Partnered | Instantly Get Help from Partners

Partnered | Instantly Get Help from Partners

Partnered is the easiest way to find prospect overlap with your partners.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Partnered | Instantly Get Help from Partners",
  "description": "Partnered is the easiest way to find prospect overlap with your partners.",
  "version": "2022.04.19",
  "manifest_version": 3,
  "background": {
    "service_worker": "./background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*",
        "https://*.lightning.force.com/*",
        "https://*.salesforce.com/*"
      ],
      "js": [
        "./inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "resources/partnered-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/react/*",
        "/resources/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {},
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://backend-api.partnered.com/",
    "https://staging-backend-api.partnered.com/"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.linkedin.com/*",
      "https://staging-app.partnered.com/*",
      "https://app.partnered.com/*"
    ]
  }
}