Email finder

Find all email address in the current webpage.

什么是Email finder?

Email finder是由Picsweb开发的Chrome扩展程序,该扩展的主要功能是“Find all email address in the current webpage.”。

扩展截图

screenshot

下载Email finder扩展crx文件

下载Email finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Easily find any email address from a web page. Visit any website and click on the extension button to get the list of email. Copy the emails from the popup box.                    

扩展基本信息

名称 Email finder Email finder
ID jmocamaeelacjfkmamnldjnedhkhbnip
官方URL https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip
简介 Find all email address in the current webpage.
文件大小 25.88 KB
安装次数 34
当前版本 2.0
更新时间 2023-07-31
上架时间 2020-08-15
评分 1.00/5 共1次评分
开发者 Picsweb
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Email finder",
    "description": "Find all email address in the current webpage.",
    "version": "2.0",
    "background": {
        "scripts": [
            "back.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Email finder",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "all_frames": false,
            "js": [
                "pop.js"
            ]
        }
    ],
    "permissions": []
}