MergeMail

Mail merge for Gmail

Что такое MergeMail?

MergeMail - это расширение Chrome, разработанное https://mergemail.co, и его основная функция - "Mail merge for Gmail".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения MergeMail

Скачайте файлы расширений MergeMail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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