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 |
| 公式URL | 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 |
| Eメール | [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\/*"
]
} | |