Ultimate H1B Sponsor Checker

Ultimate H1B Sponsor Checker

Find if a company sponsored H1B in the past couple of years in LinkedIn, Indeed, Google and glassdoor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ultimate H1B Sponsor Checker",
  "description": "Find if a company sponsored H1B in the past couple of years in LinkedIn, Indeed, Google and glassdoor.",
  "short_name": "UH1BSC",
  "version": "0.25",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "images/h1b_logo.png",
    "default_popup": "popup.html",
    "default_title": "The Extension automatically works when you are in Linkedin or indeed jobs search page."
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*",
        "*://*.indeed.com/*",
        "*://*.glassdoor.com/*",
        "*://*.google.com/*"
      ],
      "run_at": "document_idle",
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [],
  "icons": {
    "16": "images/h1b_logo_16x16.png",
    "48": "images/h1b_logo_48x48.png",
    "96": "images/h1b_logo_96x96.png",
    "128": "images/h1b_logo_128x128.png"
  }
}