MailTumble

Make disposable wrappers for all your email addresses

MailTumble란 무엇입니까?

MailTumble은(는) https://id.mailtumble.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make disposable wrappers for all your email addresses"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        About MailTumble ID:
MailTumble creates temporary aliases for your email addresses and works regardless of email client, inbox type, or smartphone type. Your alias address will just provide email passthrough, and doesn't require any configuration or migration to a new inbox. 

Inbox Management:
Enter a new inbox, then create infinite aliases for it which you can manage from your Chrome extension. You never have to share a "raw" email address again, and there are now endless ways to control your email flow. Cut off a spam offender when you identify the culprit or send all your subscriptions to a different work email when you leave an organisation. 

Privacy and Security:
Software logins regularly end up in credential dumps on the dark web, and while you can change a password, it’s much harder to change an email address! Even simply having your email address exposed in a list makes you a target for phishing attempts and brute force attacks. Now you can generate a random changeable email address that’s just like a password, for every account.

How To Use:
The Chrome Extension is in a closed/private alpha release. Create an account on the extension and sign in. Your account email will be the first receiving email. 

The extension will detect contextually when you need to put in an email address and you will have the option to use an existing alias or generate a new one.                    

확장 프로그램 기본 정보

이름 MailTumble MailTumble
ID cfpfglbkbpacjfccoheieiilflodgeih
공식 URL https://chromewebstore.google.com/detail/mailtumble/cfpfglbkbpacjfccoheieiilflodgeih
설명 Make disposable wrappers for all your email addresses
파일 크기 3.62 MB
설치 횟수 219
현재 버전 1.0.6
최근 업데이트 2022-02-08
출시 날짜 2021-12-17
평점 5.00/5 총 6 개의 평점
개발자 https://id.mailtumble.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://id.mailtumble.com
도움말 페이지 URL https://id.mailtumble.com
개인정보 보호 정책 페이지 URL https://mailtumble.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MailTumble",
    "description": "Make disposable wrappers for all your email addresses",
    "version": "1.0.6",
    "icons": {
        "16": "favicon.png",
        "128": "favicon.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "favicon.png"
        },
        "default_title": "Click Me",
        "default_popup": "src\/popup\/index.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "src\/background\/index.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/contentPopup\/styles.css"
            ],
            "js": [
                "src\/contentPopup\/index.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.mailtumble.com\/*",
                "https:\/\/*.mailtumble.app\/*"
            ],
            "js": [
                "src\/contentAuth\/index.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "favicon.png",
        "close.png"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}