Zipteams

Zipteams is a sales engagement platform that helps you connect with your customers instantly

Что такое Zipteams?

Zipteams - это расширение Chrome, разработанное Zipteams, и его основная функция - "Zipteams is a sales engagement platform that helps you connect with your customers instantly".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Zipteams

Скачайте файлы расширений Zipteams в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Zipteams is a platform that helps sales teams connect with their customers on instant meeting rooms and provide them with AI-powered insights on the conversation.

The extension helps Zipteams users access various features directly on their browser.

Currently, the extension supports the following features:
1. Add a contact to Zipteams directly from your browser while you're on your CRM's contact page or while you're surfing through LinkedIn

2. Schedule a call instantly with new contacts and join the meeting room to get started with the conversation                    

Основная информация о расширении

Название Zipteams Zipteams
ID obcjlbhpiidmfcohobdeemabmkchjbib
Официальный URL https://chromewebstore.google.com/detail/zipteams/obcjlbhpiidmfcohobdeemabmkchjbib
Описание Zipteams is a sales engagement platform that helps you connect with your customers instantly
Размер файла 381 KB
Количество установок 295
Текущая Версия 1.1.5
Последнее Обновление 2024-03-03
Дата публикации 2023-08-10
Рейтинг 5.00/5 Всего 8 оценок
Разработчик Zipteams
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://zipteams.com
URL страницы помощи https://zipteams.com/contact-us
URL страницы политики конфиденциальности https://zipteams.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zipteams",
    "description": "Zipteams is a sales engagement platform that helps you connect with your customers instantly",
    "version": "1.1.5",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "author": "Zipteams",
    "icons": {
        "128": "icons\/zip.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "cookies",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Zipteams"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "fonts\/*",
                "config.json"
            ],
            "matches": [
                ""
            ]
        }
    ]
}