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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}