Examine source code of Mainder Linkedin Tool

Inspect and view changes in Mainder Linkedin Tool 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": "Mainder Linkedin Tool",
  "version": "2.2",
  "description": "LinkedIn Widget for better productivity and data enrichment.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "externally_connectable": {
    "matches": [
      "https://app.mainder.ai/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.mainder.ai/*"
      ],
      "js": [
        "bridge.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "styles.css",
        "main.js",
        "assets/*"
      ],
      "matches": [
        "https://www.linkedin.com/*",
        "https://app.mainder.ai/*"
      ]
    }
  ]
}