Email finder
Find all email address in the current webpage.
Что такое Email finder?
Email finder - это расширение Chrome, разработанное Picsweb, и его основная функция - "Find all email address in the current webpage.".
Снимки экрана расширения
Скачать файл CRX расширения Email finder
Скачайте файлы расширений Email finder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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": [] } |