Examine source code of Ringover Cadence

Inspect and view changes in Ringover Cadence 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": "Ringover Cadence",
  "version": "1.0.4",
  "description": "Extension to extract lead data and import lead to Salesforce and Cadence tool.",
  "permissions": [
    "tabs",
    "cookies",
    "webRequest",
    "declarativeNetRequest",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "http://localhost:4200/*",
    "https://cs-vm.ringover-crm.xyz/*",
    "https://dev-vm.ringover-crm.xyz/*",
    "https://cadence.ringover.com/*",
    "https://www.linkedin.com/*",
    "https://*.hubspot.com/*",
    "https://app.bullhornstaffing.com/*",
    "https://*/image/invisibleImage/*",
    "https://*/link/getRedirectUrl?url=*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.hubspot.com/*",
        "https://app.bullhornstaffing.com/*",
        "https://cadence.ringover.com/*",
        "https://*.ringover-crm.xyz/*",
        "http://localhost:4200/*",
        "https://www.linkedin.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "type": "module"
    }
  ],
  "action": {
    "default_popup": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "react-bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "logo64_new.png",
    "48": "logo64_new.png",
    "128": "logo64_new.png"
  }
}