ScoutAhead - FREE Job Search Tool (BETA)

ScoutAhead - FREE Job Search Tool (BETA)

AI aid for job seekers by aligning resumes with jobs, streamlining job board tracking, and tailored resumes to each job.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ScoutAhead - FREE Job Search Tool (BETA)",
  "description": "AI aid for job seekers by aligning resumes with jobs, streamlining job board tracking, and tailored resumes to each job.",
  "version": "0.0.7",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png",
    "256": "icon/256.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://*.scoutahead.work*"
  ],
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Default Popup Title",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/jobDesc.js"
      ]
    },
    {
      "matches": [
        "http://localhost/login*",
        "https://app.scoutahead.work/login*",
        "https://app.scoutahead.work/signup*"
      ],
      "js": [
        "content-scripts/login.js"
      ]
    },
    {
      "matches": [
        "http://localhost/logout*",
        "https://app.scoutahead.work/logout*"
      ],
      "js": [
        "content-scripts/logout.js"
      ]
    }
  ]
}