MergeMail
Mail merge for Gmail
MergeMail란 무엇입니까?
MergeMail은(는) https://mergemail.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mail merge for Gmail"입니다.
확장 프로그램 스크린샷
MergeMail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Send and track bulk emails in Gmail. MergeMail makes it easy to send and track personalized batch emails in Gmail: - Put your contacts in a Google Sheet - Compose an email in Gmail with personalization variables - Send and track a batch of emails Features include: - Mail merge - Email tracking (opens, clicks, and UTM codes) - Templates - Unsubscribe links - Attachments - Email previews - Scheduled emails - Integrations Send up to 50 emails per day for free! It's the best alternative to Gmass and YAMM (Yet Another MailMerge).
확장 프로그램 기본 정보
이름 | MergeMail |
ID | plbgdpcficmecmpjceogkfmdgfdjedfm |
공식 URL | https://chromewebstore.google.com/detail/mergemail/plbgdpcficmecmpjceogkfmdgfdjedfm |
설명 | Mail merge for Gmail |
파일 크기 | 402 KB |
설치 횟수 | 10,000 |
현재 버전 | 1.5.1 |
최근 업데이트 | 2023-01-12 |
출시 날짜 | 2019-10-01 |
평점 | 4.89/5 총 414 개의 평점 |
개발자 | https://mergemail.co |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://www.mergemail.co |
도움말 페이지 URL | https://www.mergemail.co/support |
개인정보 보호 정책 페이지 URL | https://www.mergemail.co/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MergeMail", "short_name": "MergeMail", "version": "1.5.1", "manifest_version": 2, "description": "Mail merge for Gmail", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "homepage_url": "https:\/\/www.mergemail.co\/", "browser_action": { "default_title": "MergeMail", "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "css": [ "css\/content\/style.css" ], "js": [ "js\/content\/jquery.js", "js\/content\/inboxsdk.js", "js\/content.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/www.mergemail.co\/*" ] }, "permissions": [ "http:\/\/mail.google.com\/", "https:\/\/mail.google.com\/", "https:\/\/www.mergemail.co\/*" ], "web_accessible_resources": [ "img\/*", "js\/vendor\/jquery-2.0.3.min.js", "frame.html", "frame_loading.html" ] } |