Stop Peeking!

A tool for sending and receiving encrypted emails.

Stop Peeking!란 무엇입니까?

Stop Peeking!은(는) Cuyler Stuwe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool for sending and receiving encrypted emails."입니다.

확장 프로그램 스크린샷

screenshot

Stop Peeking! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Are you sick of Yahoo and Google reading your personal emails, and using the contents of your private emails to family and friends to target you for product sales?

This browser extension allows you to send your message texts as and encrypted email that they can't read.

You pick a key and share it with your recipient, so that the email clients can't make sense of your communication.

Instructions:

- Open an email compose/reply window.
- Click "Stop Peeking" Icon.
- Type your message into the new window.
- Add a key (password) and encrypt your message.
- Encrypted message will appear in the compose/reply window you opened.                    

확장 프로그램 기본 정보

이름 Stop Peeking! Stop Peeking!
ID maikkbiapofdokahpajfbboahkelkgih
공식 URL https://chromewebstore.google.com/detail/stop-peeking/maikkbiapofdokahpajfbboahkelkgih
설명 A tool for sending and receiving encrypted emails.
파일 크기 47.04 KB
설치 횟수 10
현재 버전 0.0.4
최근 업데이트 2020-04-23
출시 날짜 2020-04-22
평점 5.00/5 총 1 개의 평점
개발자 Cuyler Stuwe
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A tool for sending and receiving encrypted emails.",
    "version": "0.0.4",
    "name": "Stop Peeking!",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "gmail.bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mail.yahoo.com\/*"
            ],
            "js": [
                "yahoo.bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/outlook.live.com\/*"
            ],
            "js": [
                "outlook.bundle.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}