Email finder
Find all email address in the current webpage.
Email finder là gì?
Email finder là một tiện ích mở rộng Chrome được phát triển bởi Picsweb, và tính năng chính của nó là "Find all email address in the current webpage.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Email finder
Tải xuống các tệp mở rộng Email finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Email finder |
ID | jmocamaeelacjfkmamnldjnedhkhbnip |
URL Chính Thức | https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip |
Mô tả | Find all email address in the current webpage. |
Kích Thước Tệp | 25.88 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2023-07-31 |
Ngày Phát Hành | 2020-08-15 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Picsweb |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } |