CleverStaff Importer

This extension helps you to add your contacts from the LinkedIn to CleverStaff

Co je CleverStaff Importer?

CleverStaff Importer je rozšíření Chrome vyvinuté linkens.online, a jeho hlavní funkcí je „This extension helps you to add your contacts from the LinkedIn to CleverStaff“.

Stáhnout soubor CRX rozšíření CleverStaff Importer

Stáhněte si soubory rozšíření CleverStaff Importer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Extension to automatically import contacts from Linkedin into CleverStaff.                    

Základní Informace o Rozšíření

Název CleverStaff Importer CleverStaff Importer
ID negnoigedepjkjpooadklljidpapfhcb
Oficiální URL https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb
Popis This extension helps you to add your contacts from the LinkedIn to CleverStaff
Velikost souboru 2.44 MB
Počet instalací 91
Aktuální Verze 1.0.1
Poslední Aktualizace 2016-12-27
Datum Vydání 2016-12-27
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář linkens.online
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://linkens.online/policy
Podporované Jazyky en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CleverStaff Importer",
    "description": "This extension helps you to add your contacts from the LinkedIn to CleverStaff",
    "version": "1.0.1",
    "default_locale": "en",
    "icons": {
        "128": "components\/icon.png"
    },
    "browser_action": {
        "default_icon": "components\/icon.png",
        "default_popup": "components\/html\/popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "page": "components\/html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.linkedin.com\/connections*",
                "*:\/\/www.linkedin.com\/connections?*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "components\/js\/class.app.js",
                "components\/js\/connections.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.linkedin.com\/in\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "components\/js\/class.app.js",
                "components\/js\/profile.js"
            ],
            "run_at": "document_end"
        }
    ]
}