PGP for WhatsApp
Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.
O que é PGP for WhatsApp?
PGP for WhatsApp é uma extensão do Chrome desenvolvida por T21 Computing, e sua principal característica é "Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PGP for WhatsApp
Baixe arquivos de extensão PGP for WhatsApp no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | PGP for WhatsApp |
ID | acfnffcajlhbanaaaompjnojnmacefck |
URL Oficial | https://chromewebstore.google.com/detail/pgp-for-whatsapp/acfnffcajlhbanaaaompjnojnmacefck |
Descrição | Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption. |
Tamanho do Arquivo | 575 KB |
Contagem de Instalações | 34 |
Versão Atual | 0.1.5 |
Última Atualização | 2021-01-09 |
Data de Publicação | 2021-01-03 |
Desenvolvedor | T21 Computing |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://f1.t21computing.co.uk/privacy |
Idiomas Suportados | 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\/*" ] } |