Examine source code of Lever CRM

Inspect and view changes in Lever 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": "Lever CRM",
  "version": "2.18.4",
  "description": "CRM para WhatsApp Web",
  "permissions": [
    "unlimitedStorage",
    "storage",
    "tabs",
    "alarms"
  ],
  "background": {
    "service_worker": "src/core/background/index.js",
    "type": "module"
  },
  "host_permissions": [
    "https://downloadmidia.opt-api.com/webhook"
  ],
  "action": {
    "default_icon": "logo.png"
  },
  "icons": {
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "js": [
        "src/core/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle1743046339632.chunk.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "js": [
        "src/core/injection/index.js"
      ],
      "world": "MAIN"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://web.whatsapp.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "src/**/*.js",
        "assets/js/*.js",
        "assets/css/*.css",
        "assets/png/*.png",
        "src/core/injection/index.js",
        "src/core/domObserver/index.js"
      ],
      "matches": [
        "*://web.whatsapp.com/*"
      ]
    }
  ]
}