Examine source code of Easy Apply LinkedIn

Inspect and view changes in Easy Apply LinkedIn 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": "Easy Apply LinkedIn",
  "version": "2.1",
  "description": "Applying for Jobs Made Effortless!",
  "icons": {
    "16": "assets/images/256256.png",
    "48": "assets/images/256256.png",
    "128": "assets/images/256256.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/images/256256.png",
      "48": "assets/images/256256.png",
      "128": "assets/images/256256.png"
    },
    "default_popup": "popup/popup/popup.html",
    "default_title": "CONFIGURATION"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.linkedin.com/*"
      ],
      "js": [
        "content/utils.js",
        "content/createElements.js",
        "content/content.js",
        "content/xpaths.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup/**",
        "assets/images/*",
        "modals/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}