HH.ru resume hider

HH.ru resume hider

Инструмент для рекрутеров и HR. Скрывает и восстанавливает резюме на сайте hh.ru.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HH.ru resume hider",
  "version": "0.5",
  "description": "Инструмент для рекрутеров и HR. Скрывает и восстанавливает резюме на сайте hh.ru.",
  "manifest_version": 2,
  "browser_action": {},
  "icons": {
    "16": "icon 16.png",
    "64": "icon 64.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "console.js",
      "Msg send.js",
      "Msg id.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.hh.ru/search/resume?*"
      ],
      "js": [
        "console.js",
        "Msg send.js",
        "Msg id.js",
        "default options.js",
        "content.js",
        "gtm.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com; object-src 'self'"
}