Salespal

Automate sales follow ups directly through your Gmail.

Was ist Salespal?

Salespal ist eine Chrome-Erweiterung, die von https://salespal.io entwickelt wurde, und ihr Hauptmerkmal ist "Automate sales follow ups directly through your Gmail.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Salespal-Erweiterungs-CRX-Datei herunterladen

Laden Sie Salespal-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Automate sales follow ups directly through your Gmail.

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

Grundlegende Informationen zur Erweiterung

Name Salespal Salespal
ID kkhfghobgopeoblfljoehpljlmpobenf
Offizielle URL https://chromewebstore.google.com/detail/salespal/kkhfghobgopeoblfljoehpljlmpobenf
Beschreibung Automate sales follow ups directly through your Gmail.
Dateigröße 373 KB
Installationsanzahl 55
Aktuelle Version 1.0.5
Letztes Update 2023-10-26
Veröffentlichungsdatum 2023-09-18
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler https://salespal.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://salespal.io
Hilfeseite URL https://salespal.io
URL der Datenschutzrichtlinien-Seite https://salespal.io/privacy
Unterstützte Sprachen 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
}