Examine source code of Autofill Job Form

Inspect and view changes in Autofill Job Form 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,
  "name": "Autofill Job Form",
  "author": "Uplers",
  "version": "1.5",
  "application": {
    "gecko": {
      "id": "autofill-job-form@uplers.com",
      "strict_min_version": "121.0"
    }
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "cookies",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "type": "module"
  },
  "icons": {
    "16": "logo-16.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*careers*",
        "*://*/*career*",
        "*://*/*jobs*",
        "*://*/*job*",
        "*://*/*apply*",
        "*://*/*recruitment*",
        "*://*/*opportunities*",
        "*://*/*vacancies*",
        "*://*/*openings*",
        "*://*/*positions*",
        "*://*/*employment*",
        "*://*/*career-center*",
        "*://*/*job-listings*",
        "*://*/*submit-application*",
        "*://*/*job-board*",
        "*://*/*work-with-us*",
        "*://*/*join-our-team*",
        "*://*/*trainee-programs*",
        "*://*/*graduate-jobs*",
        "*://*/*internships*",
        "*://*/*campus-hiring*",
        "*://*/*my-application*",
        "*://*/*candidate*",
        "*://*/*applicant*",
        "*://*/*job-seeker*",
        "*://*/*apply-now*"
      ],
      "js": [
        "js/content.js"
      ],
      "exclude_matches": [
        "*://*.uplers.com/*"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.uplers.com/*"
      ],
      "js": [
        "js/uplers.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "logo-16.png",
      "48": "logo-48.png",
      "128": "logo-128.png"
    },
    "default_title": "Autofill Job Form",
    "browser_style": false
  },
  "web_accessible_resources": [
    "index.html",
    "utils.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{74d93d60-1478-4eae-bc14-ac5b20631d44}"
    }
  }
}