PhishBlock
Helps to block phishing attempts through email.
PhishBlockคืออะไร?
PhishBlock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Casey Haralson และคุณลักษณะหลักของมันคือ "Helps to block phishing attempts through email."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PhishBlock
ดาวน์โหลดไฟล์ส่วนขยาย PhishBlock ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Phishing attempts happen every day, all the time. We know we should be super wary of links and phone numbers in emails. We know we should check the sender address and make sure it's correct. This plugin helps with this idea. It looks at the sender's email address and compares it to any links in the email. If any information looks off or is unverifiable, it marks it in red. If everything looks good, it marks the email in green. Currently the plugin only works in Gmail. After installing, if you have Gmail open, close that tab and reopen it. This is an open source project. *Note: You should always see a green or red box around the email content. I wrote this plugin over Gmail (it integrates with their code) so when they update, it might make this plugin stop integrating. Please let me know and I will fix it as soon as possible.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | PhishBlock |
ID | mfigocgdflddipodffjfpbjmplhhfbeh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/phishblock/mfigocgdflddipodffjfpbjmplhhfbeh |
คำอธิบาย | Helps to block phishing attempts through email. |
ขนาดไฟล์ | 45.73 KB |
จำนวนการติดตั้ง | 97 |
เวอร์ชันปัจจุบัน | 0.0.0.4 |
อัปเดตครั้งล่าสุด | 2017-03-01 |
วันที่เผยแพร่ | 2017-02-28 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Casey Haralson |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.caseyharalson.com/projects/phishblock.html |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PhishBlock", "description": "Helps to block phishing attempts through email.", "version": "0.0.0.4", "manifest_version": 2, "permissions": [], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "jquery-1.11.3.min.js", "gmail.js" ], "css": [ "gmail.css" ] } ], "icons": { "48": "icon_48_01.png", "128": "icon_128_01.png" } } |