Postal Chrome Extension

Send direct mail and gifts to customers from anywhere

Что такое Postal Chrome Extension?

Postal Chrome Extension - это расширение Chrome, разработанное https://postal.com, и его основная функция - "Send direct mail and gifts to customers from anywhere".

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

screenshot
screenshot
screenshot

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

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

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

                        Postal’s Google Chrome extension enables you to send items from the Postal Marketplace directly from your inbox and the sales and marketing platforms where you already spend most of your day. Find and send items, add and edit contacts, save favorites, and track orders all without ever leaving your favorite apps like Gmail, Outreach, SalesLoft, Hubspot, or Salesforce. Postal will automatically connect with your leads and contacts and track all activity back.                    

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

Название Postal Chrome Extension Postal Chrome Extension
ID ddpaonelolflnpklgpgjjehelfhnfmdn
Официальный URL https://chromewebstore.google.com/detail/postal-chrome-extension/ddpaonelolflnpklgpgjjehelfhnfmdn
Описание Send direct mail and gifts to customers from anywhere
Размер файла 2.16 MB
Количество установок 1,610
Текущая Версия 2.1.0
Последнее Обновление 2023-12-09
Дата публикации 2020-06-10
Рейтинг 5.00/5 Всего 10 оценок
Разработчик https://postal.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.postal.com/
URL страницы помощи https://help.postal.com/
URL страницы политики конфиденциальности https://postal.io/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Postal Chrome Extension",
    "version": "2.1.0",
    "description": "Send direct mail and gifts to customers from anywhere",
    "icons": {
        "16": "postal-16.png",
        "48": "postal-48.png",
        "128": "postal-128.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "postal-16.png",
            "48": "postal-48.png",
            "128": "postal-128.png"
        },
        "default_title": "Postal Chrome Extension"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "postal-48.png",
                "postal-48-white.png",
                "iframe.html",
                "material-icons.css",
                "material-icons-outlined.woff2"
            ],
            "matches": [
                ""
            ]
        }
    ]
}