Email Signature Parser

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

Τι είναι το Email Signature Parser;

Το Email Signature Parser είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://parsio.io, και η κύρια λειτουργία του είναι "Extract contact data from email signatures using AI within your Gmail inbox and automatically send them to webhooks.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Email Signature Parser

Λήψη αρχείων επέκτασης Email Signature Parser σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Email Signature Parser Email Signature Parser
ID ppfaojnpnmfpdmhiefkljpbceaplogkn
Επίσημο URL https://chromewebstore.google.com/detail/email-signature-parser/ppfaojnpnmfpdmhiefkljpbceaplogkn
Περιγραφή Extract contact data from email signatures using AI within your Gmail inbox and automatically send them to webhooks.
Μέγεθος Αρχείου 740 KB
Αριθμός Εγκαταστάσεων 351
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2023-05-09
Ημερομηνία Δημοσίευσης 2023-05-02
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://parsio.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://parsio.io/chrome-signature-parser
Διεύθυνση URL της Σελίδας Βοήθειας https://parsio.io/chrome-signature-parser
URL της Σελίδας Πολιτικής Απορρήτου https://parsio.io/data-protection
Υποστηριζόμενες Γλώσσες 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:\/\/*\/*"
    ]
}