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."입니다.

확장 프로그램 스크린샷

screenshot

PGP for WhatsApp 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}