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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}