Sales Simplify

Linkedin Connector, Sales Automation & Engagement App
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sales Simplify",
  "description": "Linkedin Connector, Sales Automation & Engagement App",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "version": "2.0.4",
  "permissions": [
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://app.salessimplify.com/*"
  ],
  "action": {
    "default_title": "Sales Simplify"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/header-logo.png",
        "icons/128.png"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ]
}