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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send messages over WhatsApp using PGP to add a second layer of End-to-End encryption."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PGP for WhatsApp एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |