CherryPick Candidate

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

Hvad er CherryPick Candidate?

CherryPick Candidate er en Chrome-udvidelse udviklet af Cherry Pick dev team, og dens hovedfunktion er "Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account".

Udvidelsesskærmbilleder

screenshot

Download CherryPick Candidate-udvidelses-CRX-fil

Download CherryPick Candidate-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn CherryPick Candidate CherryPick Candidate
ID afcpbcjddhipmpedfdmafpklnhphjkkm
Officiel URL https://chromewebstore.google.com/detail/cherrypick-candidate/afcpbcjddhipmpedfdmafpklnhphjkkm
Beskrivelse Easily publish your Freelancer profile at Cherry-pick.io platform, and synchronize it with your personal LinkedIn account
Filstørrelse 155 KB
Antal Installationer 812
Nuværende Version 3.1
Senest Opdateret 2023-05-10
Udgivelsesdato 2022-02-02
Bedømmelse 4.67/5 Samlet 3 Bedømmelser
Udvikler Cherry Pick dev team
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://cherry-pick.io/
Hjælpeside-URL https://app.cherry-pick.io/faq/freelances
URL til Fortrolighedspolitik Side https://app.cherry-pick.io/legal-mentions
Understøttede Sprog 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\/*"
        ]
    }
}