Codersera Email Finder

Find whether email exist or not

Codersera Email Finder क्या है?

Codersera Email Finder Codersera द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find whether email exist or not"।

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

screenshot

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

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

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

                        This extension extends the functionalities of Codersera email finder
It can tell you if a matching email is found matching the search queries.
Just enter the first name, last name and domain to find the email ID's

Watch this video to know more
https://www.youtube.com/watch?v=wBFYAylvsCA

Visit this link to find emails:
https://codersera.com/email-finder

This is a free extension through which you can :
-Find business emails in no time
-Find whether email exists or not
-Find business emails for free in no time.
-Compatible with any chromium based browser(Google Chrome, Microsoft Edge, Opera, Brave, etc).

version: 1.1                    

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

नाम Codersera Email Finder Codersera Email Finder
ID linlknogogkgbpkeaoigkeicamkpijph
आधिकारिक URL https://chrome.google.com/webstore/detail/codersera-email-finder/linlknogogkgbpkeaoigkeicamkpijph
विवरण Find whether email exist or not
फ़ाइल का आकार 138 KB
स्थापना संख्या 146
वर्तमान संस्करण 1.2
अंतिम अपडेट 2019-10-15
प्रकाशन तिथि 2019-10-15
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Codersera
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://codersera.com/email-finder
सहायता पृष्ठ URL https://codersera.com/email-finder
गोपनीयता नीति पृष्ठ URL https://codersera.com/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codersera Email Finder",
    "short_name": "Email Finder",
    "description": "Find whether email exist or not",
    "version": "1.2",
    "permissions": [
        "tabs",
        "webNavigation",
        "https:\/\/www.google.com\/"
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html",
        "default_title": "Email-finder"
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            ".\/js\/axios.js",
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codersera.com\/*",
                "http:\/\/codersera.com\/*",
                "http:\/\/localhost:4000\/email-finder",
                "http:\/\/localhost:4200\/email-finder"
            ],
            "js": [
                ".\/js\/content.js"
            ],
            "css": [
                ".\/css\/content.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "web_accessible_resources": [
        "js\/inject.js"
    ]
}