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文件
下載Mail Hash擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | njjpbfibgmkogjbfkafflpodelhchfaf |
官方網址 | 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 } } |