Email Export Tool

Export emails in CSV, XLSX and PDF

Email Export Tool क्या है?

Email Export Tool anantnegik7 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export emails in CSV, XLSX and PDF"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

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

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

                        This Google Chrome Extension will get (fetch) the data ( email id and name ) from your Gmail id.

This Google Chrome Extension allows the gmail account holder to get all the customer name and email that had mailed him.

This Google Chrome Extension allows the gmail account holder to export the data ( email id and name ) into CSV, JSON, Comma Separated Format.

Export Format:
- CSV
- JSON
- Comma Separated Gmail Ids

Using Comma Separated Format you can mail multiple users as the email are comma separated ( Just Copy the emails and paste in compose mail option in gmail ).

Using CSV Format you can download and mail to some other person.

Using JSON Format you can use in API for website.

Webpage: https://codeeshop.com/other/66-web-scar.html

If you have any issue regarding this tool, contact us via 
Email : [email protected]
Facebook : https://www.facebook.com/codeeshop/

We highly appreciate your suggestions and reviews!

(We do not need your Gmail username or password to operate. We do not store your private information on our servers.)                    

एक्सटेंशन की मूल जानकारी

नाम Email Export Tool Email Export Tool
ID laeciibofligmkhkkhbonmfgbdjaiepa
आधिकारिक URL https://chromewebstore.google.com/detail/email-export-tool/laeciibofligmkhkkhbonmfgbdjaiepa
विवरण Export emails in CSV, XLSX and PDF
फ़ाइल का आकार 1.74 MB
स्थापना संख्या 310
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2023-12-04
प्रकाशन तिथि 2021-01-23
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर anantnegik7
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://ecodeeshop.github.io/blog/email-export-tool-chrome-extension/
सहायता पृष्ठ URL https://ecodeeshop.github.io/blog/contact/
गोपनीयता नीति पृष्ठ URL https://codeeshop.com/page/2-privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Email Export Tool",
    "description": "Export emails in CSV, XLSX and PDF",
    "manifest_version": 3,
    "version": "2.0.0",
    "author": "Anant Negi",
    "background": {
        "service_worker": "lib\/background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "webNavigation",
        "downloads"
    ],
    "action": {
        "default_title": "Email Export Tool",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon_16.png",
            "32": "\/images\/icon_32.png",
            "48": "\/images\/icon_48.png",
            "128": "\/images\/icon_128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon_16.png",
        "32": "\/images\/icon_32.png",
        "48": "\/images\/icon_48.png",
        "128": "\/images\/icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon_32.png"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/mail.google.com\/"
    ]
}