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ファイルをダウンロード

Stop Peeking!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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'"
}