Examine source code of LeadDesk Click-to-Call

Inspect and view changes in LeadDesk Click-to-Call 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": "LeadDesk Click-to-Call",
  "version": "25.13",
  "version_name": "25.13 BETA",
  "default_locale": "en",
  "description": "THIS EXTENSION IS FOR BETA TESTING",
  "author": {
    "email": "development@leaddesk.com"
  },
  "icons": {
    "16": "icons/16_blue.png",
    "32": "icons/32_blue.png",
    "48": "icons/48_blue.png",
    "128": "icons/128_blue.png"
  },
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/16_blue.png",
      "24": "icons/32_blue.png",
      "32": "icons/32_blue.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "patterns.xml"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}