CherryPick Candidate

CherryPick Candidate

Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CherryPick Candidate",
  "version": "3.1",
  "description": "Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://*.linkedin.com/*"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "CherryPick Candidate",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon-16x16.png",
      "48": "icons/icon-48x48.png",
      "128": "icons/icon-128x128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.cherry-pick.io/*"
    ]
  }
}