AI Cover Letter

AI Cover Letter

Craft tailored cover letters in seconds using AI, based on your CV and the job description. ✍️🤖📄

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AI Cover Letter",
  "description": "Craft tailored cover letters in seconds using AI, based on your CV and the job description. ✍️🤖📄",
  "version": "1.3",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "http://localhost:3001/*",
      "http://localhost:3002/*",
      "https://hype-dev.uatalents.com/*",
      "https://app.career.heero.ai/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Open",
    "default_icon": {
      "16": "./images/logo_16.png",
      "32": "./images/logo_32.png",
      "64": "./images/logo_64.png",
      "128": "./images/logo_128.png",
      "256": "./images/logo_256.png",
      "516": "./images/logo_512.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://hype-dev.uatalents.com/*",
        "*://app.career.heero.ai/*"
      ],
      "js": [
        "token_script.js"
      ]
    }
  ]
}