Mail Hash

Add a random hash to a plus addressable email address or to a custom domain

Mail Hash란 무엇입니까?

Mail Hash은(는) jsvde에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a random hash to a plus addressable email address or to a custom domain"입니다.

확장 프로그램 스크린샷

Mail Hash 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Email providers that support plus addressing or tagging enable you to append something to your address and still receive it in your normal inbox. 

Mail Hash adds a random hash to your email, e.g [email protected] becomes [email protected]
Use this for sign up's that require email and password. Each service you sign up for stores your under a different hash.

When some service gets hacked and the attackers obtain email and password combinations, they can't use it to brute force other services you might use, due to the different hash.

Additionally you can choose between plus addressing and custom domains. In the case of custom domains, you supply the domain and Mail Hash adds a random hash to use with catch-all email filter.
e.g. your-domain.com becomes [email protected]

Please use it in combination with a password manager. 

Code available at https://github.com/jsvde/Mail-Hash

Feedback welcome!                    

확장 프로그램 기본 정보

이름 Mail Hash Mail Hash
ID njjpbfibgmkogjbfkafflpodelhchfaf
공식 URL https://chromewebstore.google.com/detail/mail-hash/njjpbfibgmkogjbfkafflpodelhchfaf
설명 Add a random hash to a plus addressable email address or to a custom domain
파일 크기 34.86 KB
설치 횟수 21
현재 버전 0.1.2
최근 업데이트 2019-01-29
출시 날짜 2019-01-29
평점 5.00/5 총 1 개의 평점
개발자 jsvde
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jsvde/Mail-Hash
도움말 페이지 URL https://github.com/jsvde/Mail-Hash
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mail Hash",
    "version": "0.1.2",
    "description": "Add a random hash to a plus addressable email address or to a custom domain",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "24": "icon-24.png",
            "32": "icon-32.png"
        },
        "default_title": "Mail Hash",
        "default_popup": "options.html"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}