Postal Chrome Extension

Send direct mail and gifts to customers from anywhere

Co to jest Postal Chrome Extension?

Postal Chrome Extension to rozszerzenie Chrome opracowane przez https://postal.com, a jego główną funkcją jest „Send direct mail and gifts to customers from anywhere”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Postal Chrome Extension

Pobierz pliki rozszerzeń Postal Chrome Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Postal Chrome Extension Postal Chrome Extension
ID ddpaonelolflnpklgpgjjehelfhnfmdn
Oficjalny URL https://chromewebstore.google.com/detail/postal-chrome-extension/ddpaonelolflnpklgpgjjehelfhnfmdn
Opis Send direct mail and gifts to customers from anywhere
Rozmiar pliku 2.16 MB
Liczba instalacji 1,610
Aktualna Wersja 2.1.0
Ostatnia Aktualizacja 2023-12-09
Data Publikacji 2020-06-10
Ocena 5.00/5 Łącznie 10 Oceny
Deweloper https://postal.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.postal.com/
Adres URL Strony Pomocy https://help.postal.com/
Adres URL Strony Polityki Prywatności https://postal.io/privacy-policy
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}