Examine source code of Job Listing Filter

Inspect and view changes in Job Listing Filter 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": "Job Listing Filter",
  "version": "2.0.4",
  "description": "Filter job listings based on keywords.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx/vLcw0Ht9P9cr14v2psr+yZmQTKBCuQSUNCv4NMQWUGYg3L6jpykC9WdJH8taV0cITZn7yCrjm6nbraLdrzXco7GsmSlW7Im5ns+i5PHmGp41o6Rn5/O6Uv6aiGTUdPhnfTODN3Be0TtE9SOT+v+ZqFwaRgnm4nUiaDWHzpfnW6v/5ByzpET0ziYViee6Oh4fHD4jWSKu5Qs4+11M0VID/nkhg4LAY7NsnViLg95j+QkIFzWtT3uFU0tebeFW6Np5SORUct1UrNMt6pBkBaeEpXLYMy/QxlbIOw+HGM69UdWZxRrYKx8MEngL1yy+G67/o6P4eLDmAVvZqY77MRMQIDAQAB",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  }
}