Work Sponsors: UK Visa Sponsor Checker

Work Sponsors: UK Visa Sponsor Checker

Validate whether a UK company is registered as a licensed sponsor with the Work Sponsors UK Visa Sponsor Checker Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Work Sponsors: UK Visa Sponsor Checker",
  "version": "1.1.0.1",
  "manifest_version": 3,
  "description": "Validate whether a UK company is registered as a licensed sponsor with the Work Sponsors UK Visa Sponsor Checker Chrome extension",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/16.png",
      "32": "img/32.png",
      "48": "img/48.png",
      "128": "img/128.png"
    }
  },
  "host_permissions": [
    "https://api.worksponsors.co.uk/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}