Ew, Mail!

Ew, Mail! allows you to easily use a temp-mail.org mail when registering.

Ew, Mail! क्या है?

Ew, Mail! vantezzen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ew, Mail! allows you to easily use a temp-mail.org mail when registering."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ew, Mail! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Ew, Mail! allows you to easily use a temp-mail.org mail when registering. This extension is not affiliated to temp-mail.org in any way!

Simply right-click on any input field and select "Use temporary mail". Ew, Mail! will automatically open temp-mail.org in the background and insert your temporary e-mail address into the input field.

The full source code of this extension is available on https://github.com/vantezzen/ewmail, if you find any issues or have a question please visit https://github.com/vantezzen/ewmail/issues.

This extension needs the following permissions:
- "Read and change all you data on the websites that you visit" to read your current e-mail address from temp-mail.org and insert it into your current page

This extension is not affiliated to temp-mail.org in any way!                    

एक्सटेंशन की मूल जानकारी

नाम Ew, Mail! Ew, Mail!
ID lidnahlamdofklamooajjnopnloljlgp
आधिकारिक URL https://chromewebstore.google.com/detail/ew-mail/lidnahlamdofklamooajjnopnloljlgp
विवरण Ew, Mail! allows you to easily use a temp-mail.org mail when registering.
फ़ाइल का आकार 43.18 KB
स्थापना संख्या 101
वर्तमान संस्करण 1.2
अंतिम अपडेट 2020-01-02
प्रकाशन तिथि 2019-12-30
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर vantezzen
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/vantezzen/ewmail
गोपनीयता नीति पृष्ठ URL https://hollstein.io/browserprivacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ew, Mail!",
    "version": "1.2",
    "description": "Ew, Mail! allows you to easily use a temp-mail.org mail when registering.",
    "homepage_url": "https:\/\/github.com\/vantezzen\/ewmail",
    "icons": {
        "48": "icons\/icon-48.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/temp-mail.org\/",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background-scripts.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ]
}