Email Auto Extractor

Extract, automatically all email in a web page

Email Auto Extractor란 무엇입니까?

Email Auto Extractor은(는) Nicolas Grillet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extract, automatically all email in a web page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Email Auto Extractor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Auto extract all email adresses in a web page.

You just have to go on a webpage that contains email adresses and the extension show you how many email adresses it find, and then click on the logo to copy all email adresses.                    

확장 프로그램 기본 정보

이름 Email Auto Extractor Email Auto Extractor
ID blkpobilpealkkcibgcgfmflneafkkah
공식 URL https://chrome.google.com/webstore/detail/email-auto-extractor/blkpobilpealkkcibgcgfmflneafkkah
설명 Extract, automatically all email in a web page
파일 크기 186 KB
설치 횟수 996
현재 버전 0.2.0
최근 업데이트 2018-06-12
출시 날짜 2018-06-12
평점 3.47/5 총 57 개의 평점
개발자 Nicolas Grillet
이메일 [email protected]
결제 유형 in_store
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Email Extraction !"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Extract, automatically all email in a web page",
    "homepage_url": "http:\/\/www.erreurs404.net",
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png",
        "256": "icons\/icon256.png",
        "48": "icons\/icon48.png"
    },
    "short_name": "Email Extractor",
    "manifest_version": 2,
    "name": "Email Auto Extractor",
    "offline_enabled": true,
    "permissions": [
        "chrome:\/\/favicon\/",
        "contextMenus",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "storage",
        "activeTab"
    ],
    "version": "0.2.0"
}