XOR extension

XOR extension

The XOR Extension helps recruiters communicate with candidates from their ATS, job boards, or LinkedIn.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "XOR extension",
  "version": "1.7.10",
  "description": "The XOR Extension helps recruiters communicate with candidates from their ATS, job boards, or LinkedIn.",
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "extensionStyle.css",
        "assets/img/16px.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background-es2016.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "nativeMessaging",
    "tabs",
    "identity"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://*.xor.ai/*",
        "https://*.xorai.ru/*"
      ],
      "css": [
        "extensionStyle.css"
      ],
      "js": [
        "tableParser.js",
        "mainScript.js",
        "mark.min.js",
        "phoneNumbersLib.js"
      ]
    }
  ],
  "action": {},
  "icons": {
    "16": "assets/img/16px.png",
    "48": "assets/img/48px.png",
    "128": "assets/img/128px.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}