Prelude

Prelude

Prelude's extension to integrate with recruiting systems.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.21.37",
  "name": "Prelude",
  "short_name": "Prelude",
  "description": "Prelude's extension to integrate with recruiting systems.",
  "homepage_url": "https://calendly.com/prelude",
  "icons": {
    "128": "logo-transparent-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "transparent-icon.png",
        "fonts/proximanova*.woff2",
        "fonts/proximanova*.woff",
        "images/prelude-outline-logo-blue.png",
        "images/prelude-outline-logo-white.png"
      ],
      "matches": [
        "https://*/*"
      ],
      "//": "Exclude Greenhouse Skilljar (BUG-4406)",
      "exclude_matches": [
        "https://learn.greenhouse.io/*",
        "https://*.greenhouse.io/*users/*sign_in",
        "https://*.greenhouse.io/*support"
      ]
    }
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "externally_connectable": {
    "matches": [
      "*://interviewschedule.com/*",
      "*://prelude.co/*",
      "*://localhost/*",
      "*://calendly.com/app/recruiting/*",
      "*://*.calendly.com/app/recruiting/*"
    ]
  },
  "permissions": [
    "activeTab"
  ],
  "optional_permissions": [
    "scripting"
  ],
  "optional_host_permissions": [
    "https://*.myworkday.com/*",
    "https://*.successfactors.com/*"
  ],
  "action": {},
  "offline_enabled": false,
  "content_scripts": [
    {
      "matches": [
        "https://*.greenhouse.io/*",
        "https://*.lever.co/*",
        "https://*.workday.com/*"
      ],
      "//": "Exclude Greenhouse Skilljar (BUG-4406)",
      "exclude_matches": [
        "https://learn.greenhouse.io/*",
        "https://*.greenhouse.io/*users/*sign_in",
        "https://*.greenhouse.io/*support"
      ],
      "css": [
        "static/css/content.css"
      ],
      "js": [
        "static/js/content.js"
      ]
    }
  ]
}