MailTumble

Make disposable wrappers for all your email addresses

Τι είναι το MailTumble;

Το MailTumble είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://id.mailtumble.com, και η κύρια λειτουργία του είναι "Make disposable wrappers for all your email addresses".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης MailTumble

Λήψη αρχείων επέκτασης MailTumble σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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'"
}