Stop Peeking!

A tool for sending and receiving encrypted emails.

Stop Peeking! क्या है?

Stop Peeking! Cuyler Stuwe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tool for sending and receiving encrypted emails."।

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

screenshot

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

crx प्रारूप में Stop Peeking! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}