Examine source code of Job Description

Inspect and view changes in Job Description 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 Description",
  "version": "1.0.3",
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://upstaff.com/j/*",
        "https://upstaff.com/job/*",
        "https://*.indeed.com/jobs*",
        "https://*.indeed.com/viewjob*",
        "https://*.indeed.com/*",
        "https://www.glassdoor.com/Job*",
        "https://www.linkedin.com/jobs/*",
        "https://www.linkedin.com/in/*",
        "https://jobs.workable.com/search?*",
        "https://jobs.workable.com/*/view/*",
        "https://jobs.workable.com/*",
        "https://www.jobleads.com/*"
      ],
      "js": [
        "content-scripts/upstaff.js"
      ]
    }
  ],
  "action": {
    "default_title": "Click to open panel"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "sidePanel"
  ],
  "icons": {
    "16": "favicon.png",
    "48": "favicon.png",
    "128": "favicon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content-styles/upstaff-ext-content.css",
        "skills/skillsDictionary.csv"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}