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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://parsio.io/chrome-signature-parser
عنوان صفحة سياسة الخصوصية 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:\/\/*\/*"
    ]
}