CherryPick Candidate

Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account

CherryPick Candidateคืออะไร?

CherryPick Candidate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cherry Pick dev team และคุณลักษณะหลักของมันคือ "Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CherryPick Candidate

ดาวน์โหลดไฟล์ส่วนขยาย 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 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\/*"
        ]
    }
}