Examine source code of ZaapIT for Salesforce

Inspect and view changes in ZaapIT for Salesforce 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",
  "name": "ZaapIT for Salesforce",
  "description": "Eliminate duplicates & improve data quality like never before",
  "version": "1.16",
  "content_scripts": [
    {
      "matches": [
        "https://*.force.com/packagingSetupUI/ipLanding.app*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.zaapit.com/page/Install-apps"
      ],
      "js": [
        "contentScriptZP.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.force.com/lightning/*zaapit__*"
      ],
      "js": [
        "pg_founzp.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*..zaapit.com/*",
    "https://*..force.com/*"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_title": "ZaapIT Installer",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    },
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}