Postal Chrome Extension

Send direct mail and gifts to customers from anywhere

Postal Chrome Extension란 무엇입니까?

Postal Chrome Extension은(는) https://postal.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Send direct mail and gifts to customers from anywhere"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Postal Chrome Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}