Examine source code of LeadCRM | Integrate Leads with CRM

Inspect and view changes in LeadCRM | Integrate Leads with CRM source codes across current and past versions
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": "LeadCRM | Integrate Leads with CRM",
  "description": "LeadCRM have Native Integrations with most CRMs to make most out of your Leads everywhere.",
  "version": "1.0.7",
  "icons": {
    "16": "logo/logo-16.png",
    "48": "logo/logo-48.png",
    "128": "logo/logo-128.png"
  },
  "options_page": "settings/settings.html",
  "action": {
    "default_title": "LeadCRM | Sync your CRM",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "*://*.leadcrm.io/*",
    "*://*.linkedin.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "jquery-min.js"
      ],
      "css": [
        "inject.css",
        "style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "settings/settings.html",
        "images/logo.svg"
      ],
      "matches": [
        "https://*.leadcrm.io/*"
      ]
    }
  ]
}