RecruitBPM

RecruitBPM

RecruitBPM chrome extension enables recruiters to extract candidates and contacts directly from linkedin, dice and monster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RecruitBPM",
  "description": "RecruitBPM chrome extension enables recruiters to extract candidates and contacts directly from linkedin, dice and monster.",
  "version": "3.1.0.0",
  "short_name": "RecruitBPM",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src https://* data: blob: filesystem:;"
  },
  "action": {
    "default_icon": {
      "16": "icon-16.png",
      "24": "icon-24.png",
      "32": "icon-32.png"
    },
    "default_title": "RecruitBPM"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting",
    "background"
  ],
  "host_permissions": [
    "https://outlook.office.com/*",
    "https://mail.google.com/*",
    "https://mail-attachment.googleusercontent.com/*",
    "https://www.linkedin.com/*",
    "https://hiring.monster.com/*",
    "https://www.dice.com/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}