NoSpoofing
A UI notification scheme alerts users that the emails they receive may be spoofing.
NoSpoofing là gì?
NoSpoofing là một tiện ích mở rộng Chrome được phát triển bởi wchhlbt, và tính năng chính của nó là "A UI notification scheme alerts users that the emails they receive may be spoofing.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NoSpoofing
Tải xuống các tệp mở rộng NoSpoofing dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Email UI rendering is a significant part that affects the users’ perception of an email’s authenticity. However, most of the web mails and email clients we tested do not display SPF, DKIM, or DMARC authentication results explicitly. Thus, it is difficult for ordinary users to fully understand the details of email authentication. An effective defense method is to provide a user-friendly UI notification, which alerts users that the emails they receive may be spoofing. This extension is such an UI notification. Usage: Users can click the icon of the extension when reading an email. Then the web UI will show whether the email is safe or not. If users want to know the details of this email, they can click the notification message.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NoSpoofing |
ID | ehidaopjcnapdglbbbjgeoagpophfjnp |
URL Chính Thức | https://chromewebstore.google.com/detail/nospoofing/ehidaopjcnapdglbbbjgeoagpophfjnp |
Mô tả | A UI notification scheme alerts users that the emails they receive may be spoofing. |
Kích Thước Tệp | 60.46 KB |
Số Lần Cài Đặt | 48 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2020-09-22 |
Ngày Phát Hành | 2020-09-16 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | wchhlbt |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NoSpoofing", "version": "1.2", "description": " A UI notification scheme alerts users that the emails they receive may be spoofing.", "icons": { "16": "nospoofing_icon.png", "32": "nospoofing_icon.png", "48": "nospoofing_icon.png", "128": "nospoofing_icon.png" }, "browser_action": { "default_icon": "nospoofing_icon.png", "default_titile": "NoSpoofing" }, "background": { "scripts": [ "background.js" ] }, "commands": { "toggle-tags": { "suggested_key": { "default": "Alt+S", "mac": "MacCtrl+S" }, "description": "Toggle Tags" } }, "content_scripts": [ { "matches": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*" ], "js": [ "js\/jquery-1.11.0.min.js", "js\/content-script.js", "js\/jquery.popup.js" ], "css": [ "css\/custom.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "insert.js" ], "manifest_version": 2 } |