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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Email Signature Parser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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:\/\/*\/*"
    ]
}