Salezshark Connect +

Salezshark Connect +

This is an Add On for Salezshark Connect +

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Salezshark Connect +",
  "short_name": "Salezshark Connect +",
  "version": "3.1.1",
  "description": "This is an Add On for Salezshark Connect +",
  "permissions": [
    "tabs",
    "webRequest",
    "webNavigation",
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "*://www.linkedin.com/*"
  ],
  "action": {
    "default_icon": {
      "16": "assets/icons/16.png",
      "32": "assets/icons/32.png",
      "48": "assets/icons/48.png"
    },
    "default_title": "Salezshark Connect +"
  },
  "options_page": "index.html?#/options",
  "content_scripts": [
    {
      "js": [
        "contentPage.js"
      ],
      "matches": [
        "*://www.linkedin.com/*",
        "*://www.salezshark.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "background": {
    "service_worker": "backgroundPage.js",
    "type": "module"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://127.0.0.1/*",
      "*://qa.salezshark.io/*",
      "*://www.salezshark.com/*",
      "*://salezshark.com/*",
      "http://localhost/*"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "MacCtrl+Shift+S"
      }
    }
  }
}