Venia Co. Zoho Contact Importer

Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well

Venia Co. Zoho Contact Importer là gì?

Venia Co. Zoho Contact Importer là một tiện ích mở rộng Chrome được phát triển bởi Venia Companies, và tính năng chính của nó là "Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Venia Co. Zoho Contact Importer

Tải xuống các tệp mở rộng Venia Co. Zoho Contact Importer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Makes it more convenient for people who use both Zoho Support and Zoho CRM to keep their contacts synchronized.  If a contact in Zoho Support doesn't exist in Zoho CRM, a button is added to the CRM Info section allowing you to automatically add the contact to Zoho CRM.  Attempts to guess at the contact's phone, fax, website and address based on email content.

Icon built with graphics from https://icons8.com                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Venia Co. Zoho Contact Importer Venia Co. Zoho Contact Importer
ID dclpakofonokffilmoapajmiagdhmajd
URL Chính Thức https://chrome.google.com/webstore/detail/venia-co-zoho-contact-imp/dclpakofonokffilmoapajmiagdhmajd
Mô tả Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well
Kích Thước Tệp 8.34 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-03-01
Ngày Phát Hành 2017-01-29
Nhà Phát Triển Venia Companies
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Venia Co. Zoho Contact Importer",
    "description": "Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well",
    "version": "1.2",
    "icons": {
        "128": "Venia-Zoho-Icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/support.zoho.com\/*",
                "https:\/\/desk.zoho.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/crm.zoho.com\/*"
            ],
            "js": [
                "crm.js"
            ]
        }
    ],
    "background": {
        "serviceworker": "eventPage.js"
    },
    "permissions": [
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/support.zoho.com\/*"
    ]
}