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": [] } |