Кнопка импорта резюме в Talantix

Кнопка импорта резюме в Talantix

Кнопка импорта резюме с сайтов для поиска работы на Talantix.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": "Кнопка импорта резюме в Talantix",
  "version": "5.4",
  "description": "Кнопка импорта резюме с сайтов для поиска работы на Talantix.ru",
  "author": "HeadHunter https://talantix.ru",
  "icons": {
    "32": "./icons/enabled32.png",
    "48": "./icons/enabled48.png",
    "128": "./icons/enabled128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "action": {
    "default_icon": {
      "32": "./icons/enabled32.png",
      "48": "./icons/enabled48.png",
      "128": "./icons/enabled128.png"
    },
    "default_popup": "./popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://talantix.ru/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup/*"
      ],
      "matches": [
        "https://hh.ru/*",
        "https://*.zarplata.ru/*"
      ]
    }
  ]
}