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 |
官方網址 | 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 |
電子郵箱 | [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" } } |