Greenhouse Recruiting Chrome extension

Greenhouse Recruiting Chrome extension

Add prospects to Greenhouse from anywhere

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Greenhouse Recruiting Chrome extension",
  "version": "3.1.2",
  "short_name": "Greenhouse Recruiting",
  "manifest_version": 3,
  "action": {},
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "./options.html",
  "host_permissions": [
    "https://*.greenhouse.io/*",
    "https://*.greenhouse.dev/*",
    "https://*.linkedin.com/*",
    "https://*.github.com/*"
  ],
  "permissions": [
    "cookies",
    "webRequest",
    "storage",
    "system.display",
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.github.com/*"
      ],
      "js": [
        "github.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.angel.co/*"
      ],
      "js": [
        "angellist.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.indeed.com/*"
      ],
      "js": [
        "indeed.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "common.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*.png"
      ],
      "matches": [
        "*://*.github.com/*"
      ]
    }
  ],
  "description": "Add prospects to Greenhouse from anywhere"
}