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"입니다.

확장 프로그램 스크린샷

screenshot

CherryPick Candidate 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
        ]
    }
}