Mailmo - Email Finder for Linkedin
Find professional business emails directly on Linkedin
Mailmo - Email Finder for Linkedinคืออะไร?
Mailmo - Email Finder for Linkedin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mailmo.io และคุณลักษณะหลักของมันคือ "Find professional business emails directly on Linkedin"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mailmo - Email Finder for Linkedin
ดาวน์โหลดไฟล์ส่วนขยาย Mailmo - Email Finder for Linkedin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
GET 50 VERIFIED EMAILS EVERY MONTH WITH FREE ACCOUNT!
With just a single click, unveil business and personal emails, along with direct dial phone numbers, when available.
Easy to install and use, Mailmo integrates seamlessly with Linkedin. Navigate to a profile, click on the 'Find Email' button, and let our extension do the rest.
We find verified emails with 98%+ deliverability. Catch-all emails are always free!
Whether you are a sales representative identifying prospects, or a marketer building an list, our extension can streamline your process.
Join hundreds of satisfied users and elevate your Linkedin experience with Mailmo - your trusted email finder tool! ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | dngochbmnapgigpkokeeilhbigmghcgi |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mailmo-email-finder-for-l/dngochbmnapgigpkokeeilhbigmghcgi |
| คำอธิบาย | Find professional business emails directly on Linkedin |
| ขนาดไฟล์ | 74.49 KB |
| จำนวนการติดตั้ง | 131 |
| เวอร์ชันปัจจุบัน | 1.0.5 |
| อัปเดตครั้งล่าสุด | 2023-10-02 |
| วันที่เผยแพร่ | 2023-05-12 |
| ผู้พัฒนา | https://mailmo.io |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://mailmo.io |
| URL หน้านโยบายความเป็นส่วนตัว | https://mailmo.io/privacy-policy |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Mailmo - Email Finder for Linkedin",
"version": "1.0.5",
"description": "Find professional business emails directly on Linkedin",
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "images\/icon.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"images\/logo.png"
],
"matches": [
"https:\/\/www.linkedin.com\/*"
],
"use_dynamic_url": false
}
]
} | |