Lever Hire Extension

Lever Hire Extension

Import data to Lever Hire

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lever Hire Extension",
  "version": "3.0.0",
  "manifest_version": 3,
  "minimum_chrome_version": "102",
  "description": "Import data to Lever Hire",
  "icons": {
    "16": "icons/lever-chrome-icon-16.png",
    "48": "icons/lever-chrome-icon-dark-48.png",
    "128": "icons/lever-chrome-icon-dark-128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "webNavigation",
    "declarativeNetRequest",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_title": "Lever Hire",
    "default_icon": {
      "19": "icons/lever-chrome-icon-dark-19.png",
      "38": "icons/lever-chrome-icon-dark-38.png"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://lever.co/*",
        "https://hire.lever.co/*",
        "https://hire.stage.lever.co/*",
        "https://hire.eu.lever.co/*"
      ],
      "js": [
        "check_install.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dragdrop.js",
        "wrapper.js"
      ],
      "css": [
        "wrapper.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "lib/inboxsdk/inboxsdk.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "loading.html",
        "panel.html",
        "panel.js",
        "toast.html",
        "toast.js",
        "icons/*.png",
        "fonts/*.woff"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}