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 |
Eメール | [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\/*" ] } } |