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