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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extract contact data from email signatures using AI within your Gmail inbox and automatically send them to webhooks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Email Signature Parser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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:\/\/*\/*"
    ]
}