Email Signature Parser

Extract contact data from email signatures using AI within your Gmail inbox and automatically send them to webhooks.

Qu'est-ce que Email Signature Parser ?

Email Signature Parser est une extension Chrome développée par https://parsio.io, et sa fonction principale est "Extract contact data from email signatures using AI within your Gmail inbox and automatically send them to webhooks.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Email Signature Parser

Téléchargez les fichiers d'extension Email Signature Parser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Use ChatGPT to extract structured contact details from signatures in Gmail and sends them to Google Sheets, webhooks, Airtable, Zapier etc.

The extension extracts the following contact details from Gmail signatures (when they are available):
- name
- email
- job title
- company
- phone
- website

Privacy warning: The Gmail Signature Parser uses ChatGPT to extract contact details from your emails which involves the sharing of your email with ChatGPT. Rest assured that your data is not stored or shared with any third-party entities other than ChatGPT.                    

Informations de Base sur l'Extension

Nom Email Signature Parser Email Signature Parser
ID ppfaojnpnmfpdmhiefkljpbceaplogkn
URL Officiel https://chromewebstore.google.com/detail/email-signature-parser/ppfaojnpnmfpdmhiefkljpbceaplogkn
Description Extract contact data from email signatures using AI within your Gmail inbox and automatically send them to webhooks.
Taille du Fichier 740 KB
Nombre d'Installations 351
Version Actuelle 1.1
Dernière Mise à Jour 2023-05-09
Date de Publication 2023-05-02
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://parsio.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://parsio.io/chrome-signature-parser
URL de la Page d'Aide https://parsio.io/chrome-signature-parser
URL de la Page de Politique de Confidentialité https://parsio.io/data-protection
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Email Signature Parser",
    "short_name": "emailsigparser",
    "version": "1.1",
    "author": "Parsio.io ",
    "description": "Extract contact data from email signatures using AI within your Gmail inbox and automatically send them to webhooks.",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "js": [
                "assets\/js\/turndown-7.1.2.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "scripts\/event-listener.js"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ]
        },
        {
            "js": [
                "gmail\/extensionInjector.js"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "gmail\/gmailJsLoader.js",
                "gmail\/extension.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ]
}