Recruiter Tool

Recruiter Tool

LinkedIn, Indeed, CareerBuilder and Monster data capturing extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Recruiter Tool",
  "description": "LinkedIn, Indeed, CareerBuilder and Monster data capturing extension",
  "version": "0.5",
  "icons": {
    "128": "Recruiter_Tool128.png"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "background",
    "downloads",
    "https://www.linkedin.com/*",
    "https://docs.google.com/*",
    "https://resumes.indeed.com/*",
    "https://employer.careerbuilder.com/*",
    "https://hiring.monster.com/*"
  ],
  "browser_action": {
    "default_icon": "Recruiter_Tool38.png",
    "default_title": "Click here to open menu",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "shared.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*",
        "https://resumes.indeed.com/*",
        "https://employer.careerbuilder.com/*",
        "https://hiring.monster.com/*"
      ],
      "js": [
        "shared.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "https://www.linkedin.com/*",
        "https://resumes.indeed.com/*",
        "https://employer.careerbuilder.com/*",
        "https://hiring.monster.com/*"
      ],
      "js": [
        "start.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "xhr.js"
  ]
}