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文件

下载Salespal扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}