Advanced Email Extractor
It will extract emails from every page, also can check other urls being on given website.
Advanced Email Extractorคืออะไร?
Advanced Email Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย VROCode และคุณลักษณะหลักของมันคือ "It will extract emails from every page, also can check other urls being on given website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Advanced Email Extractor
ดาวน์โหลดไฟล์ส่วนขยาย Advanced Email Extractor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
You can install this extension if you really need simple, advanced email extractor. v1.00 allows user to: - Extract emails from given urls and their subpages manually/automatically - Export extracted data to CSV/JSON - Save URL's/emails in popup, no text documents needed
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Advanced Email Extractor |
ID | aefemadfofahncgjoildefkfdamnlfbd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/advanced-email-extractor/aefemadfofahncgjoildefkfdamnlfbd |
คำอธิบาย | It will extract emails from every page, also can check other urls being on given website. |
ขนาดไฟล์ | 9.28 KB |
จำนวนการติดตั้ง | 191 |
เวอร์ชันปัจจุบัน | 1.00 |
อัปเดตครั้งล่าสุด | 2021-01-21 |
วันที่เผยแพร่ | 2021-01-21 |
ผู้พัฒนา | VROCode |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Advanced Email Extractor", "short_name": "AEE", "description": "It will extract emails from every page, also can check other urls being on given website.", "version": "1.00", "icons": { "48": "assets\/vrocode.png", "32": "assets\/vrocode.png", "16": "assets\/vrocode.png" }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "backend.js" ] }, "browser_action": { "default_title": ":)", "default_popup": "popup.html", "default_icon": "assets\/vrocode.png" } } |