PeakU - match only with the best candidates

PeakU - match only with the best candidates

PeakU helps you choose who is more likely to apply to a job post and helps you build a quality network rather than a spammy one.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PeakU - match only with the best candidates",
  "version": "1.5.2",
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "thirdParty/jquery-3.5.1.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "script-src": "'self' https://cdn.jsdelivr.net/npm/[email protected]/dist/*"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/peaku_icon_16x16.png",
    "48": "images/peaku_icon_48x48.png",
    "128": "images/peaku_icon_128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "*://*.linkedin.com/*",
    "https://cdn.jsdelivr.net/npm/[email protected]/dist/*",
    "http://localhost:8000/*",
    "https://api.peaku.co/*",
    "https://peaku.co/*",
    "https://cdn.jsdelivr.net/npm/*",
    "https://ajax.googleapis.com/*",
    "https://maxcdn.bootstrapcdn.com/*"
  ],
  "permissions": [
    "declarativeContent",
    "storage"
  ]
}