SoloStar

SoloStar

Supercharge your recruiting game.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SoloStar",
  "version": "0.0.27",
  "description": "Supercharge your recruiting game.",
  "author": "SoloStar",
  "icons": {
    "192": "assets/logo192.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/talent/*"
      ],
      "js": [
        "import-content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "pages/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pages/sidebar.html"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content.js"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ],
  "options_page": "pages/options.html"
}