Spence: AI Career Copilot

Spence: AI Career Copilot

Boost your job hunt with Spence! Your AI career copilot offers tailored resumes, cover letters & insights for every 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": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "2.8",
  "default_locale": "en",
  "icons": {
    "16": "images/spence16.png",
    "48": "images/spence48.png",
    "128": "images/spence128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "storage",
    "webNavigation",
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "dist/index.html",
    "default_icon": {
      "16": "images/spence16.png",
      "48": "images/spence48.png",
      "128": "images/spence128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "views/css/materialdesignicons.min.css",
        "views/fonts/*",
        "images/*",
        "_locales/*/messages.json",
        "js/*",
        "js/rw.js",
        "views/js/*",
        "views/css/*",
        "views/html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://www.linkedin.com/jobs/search/*"
      ],
      "js": [
        "autopilot-pre.js"
      ],
      "run_at": "document_start"
    }
  ]
}