CleverStaff Importer

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

O que é CleverStaff Importer?

CleverStaff Importer é uma extensão do Chrome desenvolvida por linkens.online, e sua principal característica é "This extension helps you to add your contacts from the LinkedIn to CleverStaff".

Baixar o arquivo CRX da Extensão CleverStaff Importer

Baixe arquivos de extensão CleverStaff Importer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Extension to automatically import contacts from Linkedin into CleverStaff.                    

Informações Básicas da Extensão

Nome CleverStaff Importer CleverStaff Importer
ID negnoigedepjkjpooadklljidpapfhcb
URL Oficial https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb
Descrição This extension helps you to add your contacts from the LinkedIn to CleverStaff
Tamanho do Arquivo 2.44 MB
Contagem de Instalações 91
Versão Atual 1.0.1
Última Atualização 2016-12-27
Data de Publicação 2016-12-27
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor linkens.online
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://linkens.online/policy
Idiomas Suportados 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"
        }
    ]
}