Profile tracker - Naukri.com / Monster

Profile tracker - Naukri.com / Monster

This Chrome Extension helps in copying candidates' information from recruiter accounts (Naukri resdex and Monster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Profile tracker - Naukri.com / Monster",
  "version": "1.1.0.5",
  "description": "This Chrome Extension helps in copying candidates' information from recruiter accounts (Naukri resdex and Monster.",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "options.html"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/16by16.png",
      "32": "images/32by32.png",
      "48": "images/48by48.png",
      "128": "images/128by128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "external_v490.js"
      ],
      "matches": [
        "https://resdex.naukri.com/v2/preview/*"
      ],
      "css": [
        "content.css"
      ]
    },
    {
      "js": [
        "external_v492.js"
      ],
      "matches": [
        "https://resdex.naukri.com/v2/search/*"
      ],
      "exclude_matches": [
        "https://resdex.naukri.com/v2/search/savedSearches"
      ],
      "css": [
        "content.css"
      ]
    },
    {
      "js": [
        "external_v456m.js"
      ],
      "matches": [
        "https://recruiter.monsterindia.com/v2/resumedatabase/*"
      ],
      "run_at": "document_end",
      "css": [
        "content.css"
      ]
    },
    {
      "js": [
        "external_v490 - po.js"
      ],
      "matches": [
        "https://rms.naukri.com/application/viewApplication/*"
      ],
      "run_at": "document_end",
      "css": [
        "content.css"
      ]
    }
  ],
  "icons": {
    "16": "images/16by16.png",
    "32": "images/32by32.png",
    "48": "images/48by48.png",
    "128": "images/128by128.png"
  }
}