CodeSignal

CodeSignal

CodeSignal Chrome Extension: Generate CodeSignal interview links and easily add them to your ATS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CodeSignal",
  "description": "CodeSignal Chrome Extension: Generate CodeSignal interview links and easily add them to your ATS.",
  "version": "0.7.0",
  "icons": {
    "48": "assets/logo-48.png",
    "128": "assets/logo-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/*.png",
        "/views/login-frame.html"
      ],
      "matches": [
        "https://*.codesignal.com/*",
        "http://localhost:3000/*",
        "https://*.greenhouse.io/*",
        "https://*.lever.co/*"
      ]
    }
  ],
  "action": {
    "default_title": "CodeSignal",
    "default_icon": "assets/logo-48.png",
    "default_popup": "views/popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "host_permissions": [
    "https://*.codesignal.com/*",
    "http://localhost:3000/*",
    "https://*.greenhouse.io/*",
    "https://*.lever.co/candidates/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.greenhouse.io/interviews/scheduler/legacy*"
      ],
      "js": [
        "scripts/greenhouse-create-interview-legacy.js"
      ],
      "css": [
        "styles/iframe-sidebar.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://*.greenhouse.io/interviews/scheduler?*"
      ],
      "js": [
        "scripts/greenhouse-create-interview.js"
      ],
      "css": [
        "styles/iframe-sidebar.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*/cfr-extension/connect"
      ],
      "all_frames": true,
      "js": [
        "scripts/codesignal-connect.js"
      ]
    },
    {
      "matches": [
        "https://*.lever.co/candidates/*",
        "https://*.lever.co/inbox/*"
      ],
      "js": [
        "scripts/lever-create-interview.js"
      ],
      "run_at": "document_idle",
      "css": [
        "styles/lever-create-interview.css",
        "styles/iframe-sidebar.css"
      ]
    }
  ]
}