CherryPick Candidate
Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account
Vad är CherryPick Candidate?
CherryPick Candidate är en Chrome-tillägg utvecklad av Cherry Pick dev team, och dess huvudfunktion är "Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account".
Tilläggsskärmbilder
Ladda ner CherryPick Candidate-förlängningens CRX-fil
Ladda ner CherryPick Candidate-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | afcpbcjddhipmpedfdmafpklnhphjkkm |
| Officiell webbadress | https://chromewebstore.google.com/detail/cherrypick-candidate/afcpbcjddhipmpedfdmafpklnhphjkkm |
| Beskrivning | Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account |
| Filstorlek | 155 KB |
| Antal Installationer | 812 |
| Aktuell Version | 3.1 |
| Senast Uppdaterad | 2023-05-10 |
| Publiceringsdatum | 2022-02-02 |
| Betyg | 4.67/5 Totalt 3 Betyg |
| Utvecklare | Cherry Pick dev team |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://cherry-pick.io/ |
| Hjälpsida URL | https://app.cherry-pick.io/faq/freelances |
| URL till Sekretesspolicy Sidan | https://app.cherry-pick.io/legal-mentions |
| Stödda Språk | 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\/*"
]
}
} | |