Salespal

Automate sales follow ups directly through your Gmail.

Salespal란 무엇입니까?

Salespal은(는) https://salespal.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automate sales follow ups directly through your Gmail."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Salespal 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
}