Disposable Email Helper

Easily insert and manage disposable email addresses (favorite + random) on popular platforms using a context menu on text fields.

Τι είναι το Disposable Email Helper;

Το Disposable Email Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Eric Goldman, και η κύρια λειτουργία του είναι "Easily insert and manage disposable email addresses (favorite + random) on popular platforms using a context menu on text fields.".

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

screenshot
screenshot
screenshot

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

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

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

                        Disposable Email Helper makes it easier to use disposable email services such as Mailinator, MailDrop.CC, and others. The extension adds a context menu (right click menu) option on text fields which allows you to autofill a disposable email address and then open the online, web based inbox for that disposable email address.

The extension allows you to setup a default disposable email account inbox and also makes it easy to use a random disposable email address on the fly. The extension makes it easy to reuse a random disposable email address and keeps a history of the five most recently used random email addresses.

This extension can help you when you need to test your application's email sending functionality or when you want to avoid spam email to your real email inbox.  

Please note that disposable email addresses do not necessarily provide any privacy or security advantages on their own and should be used with other security/privacy tools. Please checkout the extension's wiki (https://github.com/erichgoldman/disposable-email-helper/wiki) to learn more.

The extension includes a few different disposable email services since some are blocked on different networks by system administrators. 

This extension is open source (GPL v3) - view the source at: https://github.com/erichgoldman/disposable-email-helper

Please help support future development: https://github.com/erichgoldman/disposable-email-helper#donate-and-support                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Disposable Email Helper Disposable Email Helper
ID cddadblbeboenbjkhieijeejfiecikel
Επίσημο URL https://chromewebstore.google.com/detail/disposable-email-helper/cddadblbeboenbjkhieijeejfiecikel
Περιγραφή Easily insert and manage disposable email addresses (favorite + random) on popular platforms using a context menu on text fields.
Μέγεθος Αρχείου 62.66 KB
Αριθμός Εγκαταστάσεων 28
Τρέχουσα Έκδοση 1.1.5
Τελευταία Ενημέρωση 2018-11-23
Ημερομηνία Δημοσίευσης 2018-11-23
Προγραμματιστής Eric Goldman
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/erichgoldman/disposable-email-helper
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/erichgoldman/disposable-email-helper/wiki
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disposable Email Helper",
    "author": "Eric H Goldman",
    "version": "1.1.5",
    "minimum_chrome_version": "42",
    "manifest_version": 2,
    "description": "__MSG_manifestDescription__",
    "homepage_url": "https:\/\/github.com\/erichgoldman\/disposable-email-helper",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "insertemail.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "services.js",
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "storage"
    ]
}