NoSpoofing

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

NoSpoofing क्या है?

NoSpoofing wchhlbt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A UI notification scheme alerts users that the emails they receive may be spoofing."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NoSpoofing एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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
}