Spence: AI Career Copilot

Spence: AI Career Copilot

Boost your job hunt with Spence! Your AI coach offers tailored resumes, cover letters & insights for every job.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "2.8",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "webRequest",
    "webNavigation",
    "downloads",
    "https://api.kindbuds.ai/",
    "<all_urls>",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src 'self' https://cdn.jsdelivr.net;",
  "browser_action": {
    "default_popup": "dist/index.html",
    "default_icon": {
      "16": "images/spence16.png",
      "48": "images/spence48.png",
      "128": "images/spence128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/*",
    "views/css/materialdesignicons.min.css",
    "views/fonts/*",
    "_locales/*/messages.json",
    "js/rw.js",
    "views/js/*",
    "views/css/*",
    "views/html/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "68.0"
    }
  }
}