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.
扩展基本信息
名称 | CherryPick Candidate |
ID | afcpbcjddhipmpedfdmafpklnhphjkkm |
官方URL | 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\/*" ] } } |