CherryPick Candidate
Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account
什麼是CherryPick Candidate?
CherryPick Candidate是由Cherry Pick dev team開發的Chrome擴展程式,該擴展的主要功能是“Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account”。
擴展截圖
下載CherryPick Candidate擴展crx文件
下載CherryPick Candidate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | afcpbcjddhipmpedfdmafpklnhphjkkm |
| 官方網址 | https://chromewebstore.google.com/detail/cherrypick-candidate/afcpbcjddhipmpedfdmafpklnhphjkkm |
| 簡介 | Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account |
| 檔案大小 | 155 KB |
| 安裝次數 | 812 |
| 目前版本 | 3.1 |
| 更新時間 | 2023-05-10 |
| 上架時間 | 2022-02-02 |
| 評分 | 4.67/5 共 3 次評分 |
| 開發者 | Cherry Pick dev team |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://cherry-pick.io/ |
| 說明頁面URL | https://app.cherry-pick.io/faq/freelances |
| 隱私政策頁面URL | https://app.cherry-pick.io/legal-mentions |
| 支援的語言 | 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\/*"
]
}
} | |