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 - это расширение Chrome, разработанное T21 Computing, и его основная функция - "Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения PGP for WhatsApp

Скачайте файлы расширений 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.                    

Основная информация о расширении

Название PGP for WhatsApp PGP for WhatsApp
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
Электронная почта [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\/*"
    ]
}