Ew, Mail!

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

什麼是Ew, Mail!?

Ew, Mail!是由vantezzen開發的Chrome擴展程式,該擴展的主要功能是“Ew, Mail! allows you to easily use a temp-mail.org mail when registering.”。

擴展截圖

screenshot

下載Ew, Mail!擴展crx文件

下載Ew, Mail!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}