CherryPick Candidate

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

Co to jest CherryPick Candidate?

CherryPick Candidate to rozszerzenie Chrome opracowane przez Cherry Pick dev team, a jego główną funkcją jest „Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia CherryPick Candidate

Pobierz pliki rozszerzeń CherryPick Candidate w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa CherryPick Candidate CherryPick Candidate
ID afcpbcjddhipmpedfdmafpklnhphjkkm
Oficjalny URL https://chromewebstore.google.com/detail/cherrypick-candidate/afcpbcjddhipmpedfdmafpklnhphjkkm
Opis Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account
Rozmiar pliku 155 KB
Liczba instalacji 812
Aktualna Wersja 3.1
Ostatnia Aktualizacja 2023-05-10
Data Publikacji 2022-02-02
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper Cherry Pick dev team
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://cherry-pick.io/
Adres URL Strony Pomocy https://app.cherry-pick.io/faq/freelances
Adres URL Strony Polityki Prywatności https://app.cherry-pick.io/legal-mentions
Obsługiwane Języki 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\/*"
        ]
    }
}