Minerva: Copilot for Job Search with ChatGPT

Minerva: Copilot for Job Search with ChatGPT

Accelerate your job hunt with an extension that puts it on autopilot, generating cover letters and facilitating referral requests.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Accelerate your job hunt with an extension that puts it on autopilot, generating cover letters and facilitating referral requests.",
  "version": "0.0.6",
  "manifest_version": 3,
  "name": "Minerva: Copilot for Job Search with ChatGPT",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "production-icon-34.png"
  },
  "icons": {
    "128": "production-icon-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "root.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "/production-icon-128.png",
        "/production-icon-34.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}