PGP for WhatsApp
Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.
什麼是PGP for WhatsApp?
PGP for WhatsApp是由T21 Computing開發的Chrome擴展程式,該擴展的主要功能是“Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.”。
擴展截圖
下載PGP for WhatsApp擴展crx文件
下載PGP for WhatsApp擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Manage and share PGP keys over WhatsApp. Then use the keys to add additional encryption to your messages.
PGP for WhatsApp is built using openpgp.js
------------------------------------------
PGP for WhatsApp is currently in beta. Please report issues and make feature requests Github.
https://github.com/twyburton/PGP-for-WhatsApp
Known Issues:
- Crypto on main thread, freezes when using crypto functions.
- Import key not yet implemented. 擴展基本資訊
| 名稱 | |
| ID | acfnffcajlhbanaaaompjnojnmacefck |
| 官方網址 | https://chromewebstore.google.com/detail/pgp-for-whatsapp/acfnffcajlhbanaaaompjnojnmacefck |
| 簡介 | Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption. |
| 檔案大小 | 575 KB |
| 安裝次數 | 34 |
| 目前版本 | 0.1.5 |
| 更新時間 | 2021-01-09 |
| 上架時間 | 2021-01-03 |
| 開發者 | T21 Computing |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://f1.t21computing.co.uk/privacy |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PGP for WhatsApp",
"description": "Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.",
"version": "0.1.5",
"permissions": [
"storage"
],
"background": {
"scripts": [
"js\/utils.js",
"js\/standfordEncryption.js",
"js\/openpgp.min.js",
"js\/jquery.min.js",
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.whatsapp.com\/*"
],
"js": [
"js\/utils.js",
"js\/openpgp.min.js",
"js\/content.js"
],
"css": [
"css\/fonts.css",
"css\/main.css"
]
}
],
"icons": {
"512": "pgp-512.png",
"128": "pgp-128.png"
},
"web_accessible_resources": [
"pages\/*.html",
"manage\/*",
"js\/*",
"fonts\/*"
]
} | |