PGP for WhatsApp

Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.

Qu'est-ce que PGP for WhatsApp ?

PGP for WhatsApp est une extension Chrome développée par T21 Computing, et sa fonction principale est "Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension PGP for WhatsApp

Téléchargez les fichiers d'extension PGP for WhatsApp au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom PGP for WhatsApp PGP for WhatsApp
ID acfnffcajlhbanaaaompjnojnmacefck
URL Officiel https://chromewebstore.google.com/detail/pgp-for-whatsapp/acfnffcajlhbanaaaompjnojnmacefck
Description Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.
Taille du Fichier 575 KB
Nombre d'Installations 34
Version Actuelle 0.1.5
Dernière Mise à Jour 2021-01-09
Date de Publication 2021-01-03
Développeur T21 Computing
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://f1.t21computing.co.uk/privacy
Langues Prises en Charge 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\/*"
    ]
}