Email finder

Find all email address in the current webpage.

Email finder क्या है?

Email finder Picsweb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find all email address in the current webpage."।

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

screenshot

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

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

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

                        Easily find any email address from a web page. Visit any website and click on the extension button to get the list of email. Copy the emails from the popup box.                    

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

नाम Email finder Email finder
ID jmocamaeelacjfkmamnldjnedhkhbnip
आधिकारिक URL https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip
विवरण Find all email address in the current webpage.
फ़ाइल का आकार 25.88 KB
स्थापना संख्या 34
वर्तमान संस्करण 2.0
अंतिम अपडेट 2023-07-31
प्रकाशन तिथि 2020-08-15
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर Picsweb
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Email finder",
    "description": "Find all email address in the current webpage.",
    "version": "2.0",
    "background": {
        "scripts": [
            "back.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Email finder",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "all_frames": false,
            "js": [
                "pop.js"
            ]
        }
    ],
    "permissions": []
}