HiCounselor Auto Application - Job Assistant!

HiCounselor Auto Application - Job Assistant!

Streamline job hunting: Auto-apply, AI answers, tailored opportunities.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HiCounselor Auto Application - Job Assistant!",
  "version": "0.1.19",
  "description": "Streamline job hunting: Auto-apply, AI answers, tailored opportunities.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "48": "images/logo.png",
    "512": "images/logo.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "images/logo.png"
    }
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "./script/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/jobs/*"
      ],
      "js": [
        "./assets/jquery-3.6.0.min.js",
        "./script/linkedin.bundle.js"
      ]
    },
    {
      "matches": [
        "https://*.lever.co/*"
      ],
      "js": [
        "./assets/jquery-3.6.0.min.js",
        "./script/lever.bundle.js"
      ]
    },
    {
      "matches": [
        "https://boards.greenhouse.io/*/jobs/*",
        "https://boards.eu.greenhouse.io/*/jobs/*",
        "https://boards.greenhouse.io/*"
      ],
      "js": [
        "./assets/jquery-3.6.0.min.js",
        "./script/greenhouse.bundle.js"
      ]
    },
    {
      "matches": [
        "https://*.indeed.com/*",
        "https://indeed.com/*",
        "https://www.indeed.com/viewjob*",
        "https://www.google.com/recaptcha/api2/demo"
      ],
      "js": [
        "assets/jquery-3.6.0.min.js",
        "./script/indeed.bundle.js"
      ]
    },
    {
      "matches": [
        "https://*.ziprecruiter.com/jobs/*",
        "https://ziprecruiter.com/jobs/*",
        "https://*.ziprecruiter.com/jobseeker/home*",
        "https://ziprecruiter.com/jobseeker/home*"
      ],
      "js": [
        "assets/jquery-3.6.0.min.js",
        "./script/ziprecruiter.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/mappings.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}