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
官方網址 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": []
}