Email Phishing Tool

Check if an email is phishing with one click!

Email Phishing Toolคืออะไร?

Email Phishing Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SFBN Dev และคุณลักษณะหลักของมันคือ "Check if an email is phishing with one click!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Email Phishing Tool

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
อีเมล [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"
    }
}