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 ที่พัฒนาโดย andyzanli และคุณลักษณะหลักของมันคือ "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 อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Scrape webpages for names and emails straight into your Google Spreadsheet for Mail Merge.

Here's the process:
1. *Set up a Google Spreadsheet with a Mail Merge template.
2. *Copy the "Anyone with the link can edit" URL.
3. Go to a directory webpage with emails listed.
4. Click open the Email Scraper extension.
5. Paste the URL into the "Google Spreadsheet URL" box.
6. Start scraping.
    Repeat steps 3 - 6.


This process takes the effort out of collecting email addresses for targeted mass marketing purposes. Simply open up a webpage with a directory of people, click start, and watch as your spreadsheet fills up with names and emails.

Email Scraper does not require any specific Mail Merge add-on in Google Spreadsheet in order to operate, however, your spreadsheet will have to abide by the schema below for the first three columns in order for the data to be inserted in the correct order. 


*The only strict requirements are to have a shared link that has access to edit and properly named columns:
1A: First Name   |    1B: Last Name    |    1C: Email Address

*Access to edit: Check to make sure that the Google Spreadsheet URL you paste ends with "edit?usp=sharing"


That's it! Please remember to rate and share! A little like goes a long way. :)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Email Scraper for Mail Merge Email Scraper for Mail Merge
ID eboiamfelgfbnhckknboemljjccmnhhd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/email-scraper-for-mail-me/eboiamfelgfbnhckknboemljjccmnhhd
คำอธิบาย Extract names and emails from webpages for mass email marketing using Google Spreadsheets with Mail Merge
ขนาดไฟล์ 19.01 KB
จำนวนการติดตั้ง 414
เวอร์ชันปัจจุบัน 1.0.0.2
อัปเดตครั้งล่าสุด 2018-12-24
วันที่เผยแพร่ 2018-12-24
คะแนน 1.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา andyzanli
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://emailscraper-mailmerge.herokuapp.com
ภาษาที่รองรับ en-US
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.2",
    "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'"
}