Examine source code of vocallabs

Inspect and view changes in vocallabs 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": "vocallabs",
  "version": "1.2",
  "description": "Fetch contact details from LinkedIn profiles",
  "icons": {
    "16": "vocallabs.png",
    "48": "vocallabs.png",
    "128": "vocallabs.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "clipboardWrite"
  ],
  "host_permissions": [
    "https://*.linkedin.com/*"
  ],
  "action": {
    "default_title": "vocallabs"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "vocallabs.png"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ]
}