PGP for WhatsApp
Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.
PGP for WhatsApp là gì?
PGP for WhatsApp là một tiện ích mở rộng Chrome được phát triển bởi T21 Computing, và tính năng chính của nó là "Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PGP for WhatsApp
Tải xuống các tệp mở rộng PGP for WhatsApp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PGP for WhatsApp |
ID | acfnffcajlhbanaaaompjnojnmacefck |
URL Chính Thức | https://chromewebstore.google.com/detail/pgp-for-whatsapp/acfnffcajlhbanaaaompjnojnmacefck |
Mô tả | Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption. |
Kích Thước Tệp | 575 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 0.1.5 |
Cập Nhật Lần Cuối | 2021-01-09 |
Ngày Phát Hành | 2021-01-03 |
Nhà Phát Triển | T21 Computing |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://f1.t21computing.co.uk/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |