Examine source code of JobSwift.AI - Apply To Jobs Differently

Inspect and view changes in JobSwift.AI - Apply To Jobs Differently 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
{
  "manifest_version": 2,
  "version": "1.24.0",
  "name": "JobSwift.AI - Apply For A Job Differently",
  "description": "JobSwift.AI's extension enables rapid job applications by auto-populating forms with your CV data, reducing errors and saving time",
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "identity",
    "downloads",
    "storage",
    "https://api.jobswift.ai/*",
    "https://auth.jobswift.ai/*"
  ],
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9cf79223-1a65-4e6f-86e1-7e55a3297639}"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.jobswift.ai/*"
      ],
      "js": [
        "src/contentScript.js"
      ],
      "run_at": "document_start"
    }
  ]
}