Salespal

Automate sales follow ups directly through your Gmail.

Salespal là gì?

Salespal là một tiện ích mở rộng Chrome được phát triển bởi https://salespal.io, và tính năng chính của nó là "Automate sales follow ups directly through your Gmail.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salespal

Tải xuống các tệp mở rộng Salespal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Automate sales follow ups directly through your Gmail.

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salespal Salespal
ID kkhfghobgopeoblfljoehpljlmpobenf
URL Chính Thức https://chromewebstore.google.com/detail/salespal/kkhfghobgopeoblfljoehpljlmpobenf
Mô tả Automate sales follow ups directly through your Gmail.
Kích Thước Tệp 373 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2023-10-26
Ngày Phát Hành 2023-09-18
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://salespal.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://salespal.io
URL Trang Trợ Giúp https://salespal.io
URL Trang Chính Sách Bảo Mật https://salespal.io/privacy
Ngôn Ngữ Được Hỗ Trợ 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
}