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.”。
扩展截图
下载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! |
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'" } |