NoSpoofing

A UI notification scheme alerts users that the emails they receive may be spoofing.

什麼是NoSpoofing?

NoSpoofing是由wchhlbt開發的Chrome擴展程式,該擴展的主要功能是“A UI notification scheme alerts users that the emails they receive may be spoofing.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載NoSpoofing擴展crx文件

下載NoSpoofing擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 NoSpoofing NoSpoofing
ID ehidaopjcnapdglbbbjgeoagpophfjnp
官方網址 https://chromewebstore.google.com/detail/nospoofing/ehidaopjcnapdglbbbjgeoagpophfjnp
簡介 A UI notification scheme alerts users that the emails they receive may be spoofing.
檔案大小 60.46 KB
安裝次數 48
目前版本 1.2
更新時間 2020-09-22
上架時間 2020-09-16
評分 5.00/5 共 2 次評分
開發者 wchhlbt
電子郵箱 [email protected]
付費類型 free
支援的語言 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
}