Email finder

Find all email address in the current webpage.

ما هو Email finder؟

Email finder هو إضافة Chrome تم تطويرها بواسطة Picsweb، والميزة الرئيسية لها هي "Find all email address in the current webpage.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Email finder

قم بتنزيل ملفات الامتداد Email finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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": []
}