Leads to ZohoCRM - for free

A chrome extension to extract XING and LinkedIn Leads and send them to Zoho

什麼是Leads to ZohoCRM - for free?

Leads to ZohoCRM - for free是由trieb.work | Jannik Z開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension to extract XING and LinkedIn Leads and send them to Zoho”。

擴展截圖

screenshot

下載Leads to ZohoCRM - for free擴展crx文件

下載Leads to ZohoCRM - for free擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This little browser plugin adds an overlay button to all LinkedIn and XING profile pages. When clicking it, the contact details get downloaded and the person gets saved in your Zoho CRM as Lead or Contact - completely for free!
Saves you hours of manual copy and paste work!
On first start the plugin will ask you to sign-in to ZohoCRM using your account. We don't store any sensitive data and you can remove all access with one click in the ZohoCRM settings. All servers are located in Europe.

Please add the custom fields "LinkedIn_ID" and "XING_ID" to Zoho before using this extension.                    

擴展基本資訊

名稱 Leads to ZohoCRM - for free Leads to ZohoCRM - for free
ID opgjhkjphalmbanenjccphcfhflfcpeh
官方網址 https://chrome.google.com/webstore/detail/leads-to-zohocrm-for-free/opgjhkjphalmbanenjccphcfhflfcpeh
簡介 A chrome extension to extract XING and LinkedIn Leads and send them to Zoho
檔案大小 483 KB
安裝次數 83
目前版本 1.0.8
更新時間 2021-05-14
上架時間 2020-06-16
開發者 trieb.work | Jannik Z
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://trieb.work
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to extract XING and LinkedIn Leads and send them to Zoho",
    "version": "1.0.8",
    "manifest_version": 3,
    "name": "Leads to ZohoCRM - for free",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "permissions": [
        "storage",
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/linkedin.com\/*",
        "https:\/\/*.linkedin.com\/*",
        "https:\/\/xing.com\/*",
        "https:\/\/*.xing.com\/*"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.linkedin.com\/*",
                "https:\/\/xing.com\/profile\/*",
                "https:\/\/*.xing.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}