CATS Extension

CATS Extension

Save time when sourcing candidates and contacts from websites like LinkedIn, Monster, CareerBuilder and Dice. Click the CATS icon to parse contact information from web pages. Review and make edits, then click submit to add the data right into CATS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "default_locale": "en",
  "name": "CATS Extension",
  "version": "3.2.76",
  "description": "Easily add candidates and contacts from popular websites directly into the CATS applicant tracking system.",
  "author": "Top Echelon",
  "icons": {
    "16": "files/cats-16.png",
    "48": "files/cats-48.png",
    "128": "files/cats-128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_action": {
    "default_icon": {
      "32": "files/cats-disabled.png"
    },
    "default_title": "CATS"
  },
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.angel.co/*",
        "*://*.careerbuilder.com/*",
        "*://*.dice.com/*",
        "*://*.dice.ca/*",
        "*://*.github.com/*",
        "*://*.indeed.com/*",
        "*://*.linkedin.com/*",
        "*://*.monster.com/*",
        "*://*.monster.ca/*",
        "*://*.monsterboard.nl/*",
        "*://*.twitter.com/*",
        "*://*.xing.com/*",
        "*://*.ziprecruiter.com/*",
        "*://*.zoominfo.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "files/*"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "identity",
    "storage",
    "contextMenus",
    "webNavigation",
    "<all_urls>"
  ]
}