huntlee

huntlee

Функции плагина: Захват данных о кандидатах: Плагин позволяет пользователям выделять и сохранять информацию о кандидатах с…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "huntlee",
  "version": "2.5",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html"
  },
  "description": "",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "hantlee_logo.png",
    "32": "hantlee_logo.png",
    "48": "hantlee_logo.png",
    "128": "hantlee_logo.png"
  },
  "permissions": [
    "background",
    "storage",
    "scripting",
    "tabs",
    "activeTab",
    "<all_urls>"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "superjob.js"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js",
        "linkedin.js",
        "superjob.js",
        "avito.js"
      ]
    },
    {
      "matches": [
        "https://career.habr.com/*"
      ],
      "js": [
        "habr.js"
      ],
      "run_at": "document_start",
      "match_origin_as_fallback": true
    },
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "linkedin.js"
      ],
      "run_at": "document_start",
      "match_origin_as_fallback": true
    },
    {
      "matches": [
        "*://*.rabota.ru/*"
      ],
      "js": [
        "rabotaru.js"
      ],
      "run_at": "document_start",
      "match_origin_as_fallback": true
    }
  ]
}