Salespal

Automate sales follow ups directly through your Gmail.

Что такое Salespal?

Salespal - это расширение Chrome, разработанное https://salespal.io, и его основная функция - "Automate sales follow ups directly through your Gmail.".

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

screenshot
screenshot
screenshot

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

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

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

                        Automate sales follow ups directly through your Gmail.

To use this tool, sign up for a Salespal account at www.salespal.io!                    

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

Название Salespal Salespal
ID kkhfghobgopeoblfljoehpljlmpobenf
Официальный URL https://chromewebstore.google.com/detail/salespal/kkhfghobgopeoblfljoehpljlmpobenf
Описание Automate sales follow ups directly through your Gmail.
Размер файла 373 KB
Количество установок 55
Текущая Версия 1.0.5
Последнее Обновление 2023-10-26
Дата публикации 2023-09-18
Рейтинг 5.00/5 Всего 8 оценок
Разработчик https://salespal.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://salespal.io
URL страницы помощи https://salespal.io
URL страницы политики конфиденциальности https://salespal.io/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salespal",
    "version": "1.0.5",
    "description": "Automate sales follow ups directly through your Gmail.",
    "permissions": [
        "storage"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches:": [
            "https:\/\/mail.google.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "assets\/style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/app.salespal.io\/*",
                "http:\/\/localhost:5173\/*"
            ],
            "js": [
                "injectFE.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Salespal",
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/sp_16.png",
            "32": "images\/sp_32.png",
            "48": "images\/sp_48.png",
            "128": "images\/sp_128.png"
        }
    },
    "icons": {
        "16": "images\/sp_16.png",
        "32": "images\/sp_32.png",
        "48": "images\/sp_48.png",
        "128": "images\/sp_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "assets\/*",
                "gmail.js",
                "extension.js",
                "constants.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        },
        {
            "resources": [
                "constants.js"
            ],
            "matches": [
                "https:\/\/app.salespal.io\/*",
                "http:\/\/localhost:5173\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/mail.google.com\/*",
        "https:\/\/v1.api.salespal.io\/*",
        "http:\/\/localhost:4000\/*"
    ],
    "manifest_version": 3
}