Email finder
Find all email address in the current webpage.
Email finderとは何ですか?
Email finderはPicswebによって開発されたChromeの拡張機能で、その主な機能は「Find all email address in the current webpage.」です。
拡張機能のスクリーンショット
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.                     拡張機能の基本情報
| 名前 |   |  
| 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 | 
| Eメール | [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": []
}  |  |