Email Phishing Tool
Check if an email is phishing with one click!
Email Phishing Toolとは何ですか?
Email Phishing ToolはSFBN Devによって開発されたChromeの拡張機能で、その主な機能は「Check if an email is phishing with one click!」です。
拡張機能のスクリーンショット
Email Phishing Tool拡張機能のCRXファイルをダウンロード
Email Phishing Tool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simply highlight any text and click the extension icon, and you will be presented with a phishing analysis. Features include: - Phishy keyword detector - Spell check - Unsafe links - Overall rating Enjoy :)
拡張機能の基本情報
名前 | Email Phishing Tool |
ID | libamiifmgfpcafbdjhaojbbbdgcbhif |
公式URL | https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif |
説明 | Check if an email is phishing with one click! |
ファイルサイズ | 114 KB |
インストール数 | 149 |
現在のバージョン | 1.0.1 |
最終更新日 | 2021-01-21 |
公開日 | 2020-05-04 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | SFBN Dev |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Email Phishing Tool", "version": "1.0.1", "manifest_version": 2, "description": "Check if an email is phishing with one click!", "icons": { "16": "emailphishingicon16.png", "48": "emailphishingicon48.png", "128": "emailphishingicon128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Email Phishing Tool", "default_popup": "popup.html" } } |