Email Scraper for Mail Merge

Extract names and emails from webpages for mass email marketing using Google Spreadsheets with Mail Merge

Что такое Email Scraper for Mail Merge?

Email Scraper for Mail Merge - это расширение Chrome, разработанное https://emailscraper-mailmerge.herokuapp.com, и его основная функция - "Extract names and emails from webpages for mass email marketing using Google Spreadsheets with Mail Merge".

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

screenshot
screenshot

Скачать файл CRX расширения Email Scraper for Mail Merge

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

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

                        **This is a promotional item for our Chrome Extension with the same name.**

The link to the Chrome Web Store is provided below.

The reason why we are doing this is because we want to make this application accessible to as many people as possible who are using Mail Merge with Google Sheets. This is a add-on specifically for Sheet users who want to extract emails from web page directories in order to send promotional emails with Mail Merge.

Further instructions can be found at the Chrome Extension Web Store.

Follow the link below to download the extension to your Chrome browser:
https://chrome.google.com/webstore/detail/email-scraper-for-mail-me/eboiamfelgfbnhckknboemljjccmnhhd                    

Основная информация о расширении

Название Email Scraper for Mail Merge Email Scraper for Mail Merge
ID hpdkiegodjfpfgbciljalfjgfpcfbfhl
Официальный URL https://chromewebstore.google.com/detail/email-scraper-for-mail-me/hpdkiegodjfpfgbciljalfjgfpcfbfhl
Описание Extract names and emails from webpages for mass email marketing using Google Spreadsheets with Mail Merge
Размер файла 18.77 KB
Количество установок 53
Текущая Версия 1.0.0.1
Последнее Обновление 2018-10-17
Дата публикации 2018-10-17
Разработчик https://emailscraper-mailmerge.herokuapp.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://emailscraper-mailmerge.herokuapp.com
URL страницы помощи https://emailscraper-mailmerge.herokuapp.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Email Scraper for Mail Merge",
    "short_name": "Email Scraper",
    "description": "Extract names and emails from webpages for mass email marketing using Google Spreadsheets with Mail Merge",
    "version": "1.0.0.1",
    "author": "Andy Li",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Email Scraper Extension",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "content.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/script.google.com\/*; https:\/\/ssl.google-analytics.com; object-src 'self'"
}