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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CherryPick Candidate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } } |