HRBOT

HRBOT

Расширение для добавления кандидатов в hrbot.kz

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HRBOT",
  "version": "2",
  "icons": {
    "128": "images/hrbot.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://hh.kz/search/resume*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.js",
        "js/resumes.js"
      ]
    },
    {
      "matches": [
        "https://*.hh.kz/resume/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.js",
        "js/resume.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "https://cabinet.hrbot.kz/*"
  ],
  "browser_action": {
    "default_title": "HRBOT",
    "default_icon": "images/hrbot.png",
    "default_popup": "index.html"
  }
}