ИИ генератор сопроводительных писем для hh.ru

ИИ генератор сопроводительных писем для hh.ru

Позволяет сгенерировать сопроводительное письмо при отклике на вакансию на hh.ru

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_extName__",
  "version": "3",
  "default_locale": "ru",
  "description": "__MSG_extDescr__",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "[email protected]",
  "content_scripts": [
    {
      "matches": [
        "https://*.hh.ru/*",
        "https://hh.ru/*"
      ],
      "css": [
        "sites/hh/content_scripts/style.css"
      ],
      "js": [
        "sites/hh/content_scripts/script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "sites/hh/service_worker/worker.mjs",
    "type": "module"
  },
  "permissions": [
    "offscreen"
  ],
  "host_permissions": [
    "https://functions.yandexcloud.net/*",
    "https://api.hh.ru/*",
    "https://hh.ru/*",
    "https://*.hh.ru/*"
  ]
}