Examine source code of LinkMatch For CSV

Inspect and view changes in LinkMatch For CSV 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": "LinkMatch For CSV",
  "short_name": "LinkMatch",
  "description": "Automated LinkedIn sourcing to CSV",
  "version": "3.53",
  "icons": {
    "16": "icon48.png",
    "48": "icon48.png",
    "128": "icon48.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*.linkedin.com/*",
    "https://*.xing.com/*",
    "https://*.linkmatch.net:440/*",
    "https://*.linkmatch.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*",
        "https://*.xing.com/*"
      ],
      "js": [
        "content-script-bundle.js"
      ],
      "css": [
        "content-styles.css",
        "content-styles1.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "main-world-script-bundle.js"
      ],
      "run_at": "document_start",
      "world": "MAIN"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.linkmatch.net/*"
    ]
  },
  "background": {
    "service_worker": "background-script-bundle.js",
    "type": "module"
  },
  "options_page": "options_page.html#/bulk-parsing-dashboard",
  "action": {
    "default_icon": {
      "19": "icon48.png",
      "38": "icon48.png"
    }
  }
}