Email finder

Find all email address in the current webpage.

Co to jest Email finder?

Email finder to rozszerzenie Chrome opracowane przez Picsweb, a jego główną funkcją jest „Find all email address in the current webpage.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Email finder

Pobierz pliki rozszerzeń Email finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Email finder Email finder
ID jmocamaeelacjfkmamnldjnedhkhbnip
Oficjalny URL https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip
Opis Find all email address in the current webpage.
Rozmiar pliku 25.88 KB
Liczba instalacji 34
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2023-07-31
Data Publikacji 2020-08-15
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Picsweb
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": []
}