CherryPick Candidate
Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account
Was ist CherryPick Candidate?
CherryPick Candidate ist eine Chrome-Erweiterung, die von Cherry Pick dev team entwickelt wurde, und ihr Hauptmerkmal ist "Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account".
Erweiterungsscreenshots
CherryPick Candidate-Erweiterungs-CRX-Datei herunterladen
Laden Sie CherryPick Candidate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension is part of cherry-pick.io Freelancer and Mission search platform. It allows for easy creating a free-lancer account and to synchronize it with candidate LinkedIn profile. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | afcpbcjddhipmpedfdmafpklnhphjkkm |
| Offizielle URL | https://chromewebstore.google.com/detail/cherrypick-candidate/afcpbcjddhipmpedfdmafpklnhphjkkm |
| Beschreibung | Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account |
| Dateigröße | 155 KB |
| Installationsanzahl | 812 |
| Aktuelle Version | 3.1 |
| Letztes Update | 2023-05-10 |
| Veröffentlichungsdatum | 2022-02-02 |
| Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
| Entwickler | Cherry Pick dev team |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://cherry-pick.io/ |
| Hilfeseite URL | https://app.cherry-pick.io/faq/freelances |
| URL der Datenschutzrichtlinien-Seite | https://app.cherry-pick.io/legal-mentions |
| Unterstützte Sprachen | en |
| 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\/*"
]
}
} | |