Email Exporter

Extract all email addresses and phone numbers in a web page.

Email Exporter क्या है?

Email Exporter https://www.dummysoftware.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extract all email addresses and phone numbers in a web page."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Extract all email addresses and phone numbers in a web page. Simple and easy web page extractor.

* Extract all email addresses in a page.
* Extract all phone numbers in a page.
* Export results to a text file.
* Copy results to clipboard.
* Append captured data across pages and tabs.
* Search through HTML or text of the page for contacts.
* Add custom regular expressions to capture data.
* Save results to a file or post them to a URL with authentication.
* Quick and easy extractor!

Simply click the extension icon to automatically extract all email addresses and phone numbers displayed on the current web page. Email Exporter can be configured to look in the html or the text for matching data.

It can also append captured data across web pages and tabs. Check-mark the option to append, then visit multiple pages or tabs, open the extension to extract, and automatically grow your list even bigger. Then save all of the results at once!

To save your results, simply export them to a text file (with the option to append to any existing results), copy them to the clipboard and paste them anywhere you want, or post them to a secure URL to process the collected data with your own API.                    

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

नाम Email Exporter Email Exporter
ID ecnfbegpagpeocjegnecbifjepfcpnhe
आधिकारिक URL https://chromewebstore.google.com/detail/email-exporter/ecnfbegpagpeocjegnecbifjepfcpnhe
विवरण Extract all email addresses and phone numbers in a web page.
फ़ाइल का आकार 203 KB
स्थापना संख्या 30,946
वर्तमान संस्करण 2.4
अंतिम अपडेट 2024-01-27
प्रकाशन तिथि 2020-05-31
रेटिंग 3.90/5 कुल 59 रेटिंग्स
डेवलपर https://www.dummysoftware.com
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL http://dummysoftware.com/chrome-privacy.html
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Email Exporter",
    "version": "2.4",
    "manifest_version": 3,
    "description": "Extract all email addresses and phone numbers in a web page.",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "action": {
        "default_icon": {
            "38": "images\/icon-38.png"
        },
        "default_title": "Email Exporter",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png"
    }
}