Rekruit.it Extension

Rekruit.it Extension

Source effectively from job portals

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Source effectively from job portals",
  "version": "5.2.3",
  "manifest_version": 3,
  "name": "Rekruit.it Extension",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://resdex.naukri.com/v3/preview?*",
    "https://pre-prod.rekruit.it/",
    "https://www.rekruit.it/",
    "https://rekruit.it/"
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://resdex.naukri.com/v3/preview?*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://pre-prod.rekruit.it/*",
      "https://www.rekruit.it/*",
      "https://rekruit.it/*"
    ]
  }
}