BrightHire (MV2)

BrightHire (MV2)

MV2 version.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BrightHire (MV2)",
  "description": "MV2 version.",
  "version": "2.1.22",
  "version_name": "v2.1.22-beta",
  "browser_action": {
    "default_icon": "icon-128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "https://*.brighthire.ai/*",
    "https://brighthire-kyle.ngrok.io/*",
    "https://localhost:3000/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.brighthire.ai/*",
      "https://brighthire-kyle.ngrok.io/*",
      "https://localhost:3000/*"
    ]
  },
  "icons": {
    "16": "icon-16x16.png",
    "48": "icon-48x48.png",
    "128": "icon-128x128.png"
  },
  "web_accessible_resources": [
    "toast.html",
    "drawer.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.greenhouse.io/interviews/scheduler?*",
        "https://*.greenhouse.io/interviews/scheduler/legacy?*"
      ],
      "run_at": "document_start",
      "js": [
        "greenhouseSchedulerContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.greenhouse.io/people/*"
      ],
      "run_at": "document_start",
      "js": [
        "greenhouseCandidateContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.greenhouse.io/guides/*/people/*",
        "https://*.greenhouse.io/people/*",
        "https://*.greenhouse.io/scorecards/*",
        "https://hire.lever.co/interviews/*"
      ],
      "run_at": "document_start",
      "js": [
        "drawerContentScript.js"
      ],
      "css": [
        "drawerContentScript.css"
      ]
    },
    {
      "matches": [
        "https://hire.lever.co/candidates*"
      ],
      "run_at": "document_start",
      "js": [
        "drawerContentScript.js",
        "leverOpportunityContentScript.js"
      ],
      "css": [
        "drawerContentScript.css"
      ]
    },
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "run_at": "document_start",
      "js": [
        "googleCalendarContentScript.js"
      ]
    }
  ]
}