RightBound Connector

RightBound Connector

Autonomously connect and engage with prospects

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RightBound Connector",
  "version": "1.16",
  "description": "Autonomously connect and engage with prospects",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "import-contentScript.js"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://*.rightbound.io/",
    "https://*.rightbound.com/",
    "https://*.linkedin.com/",
    "https://*.auth0.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "contentScript.js"
      ],
      "matches": [
        "https://*.linkedin.com/*",
        "https://*.rightbound.io/*",
        "https://*.rightbound.com/*",
        "https://*.auth0.com/*"
      ]
    }
  ]
}