SimpleDiscordCrypt

Discord message encryption plugin, it gives end-to-end clientside encryption for your messages and files with automatic key exchange

SimpleDiscordCrypt क्या है?

SimpleDiscordCrypt An0 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Discord message encryption plugin, it gives end-to-end clientside encryption for your messages and files with automatic key exchange"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SimpleDiscordCrypt एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Encrypt your messages in the chat! This extension helps you in security and privacy by allowing you to encrypt your messages in Discord making sure that it's only you and the recipient(s) who ever read them!
Works from the browser or on your computer, without BetterDiscord.

Once you open discord you will get a window to create your local database, once that's done you can toggle encryption using the lock icon added to the channel's header and you can select the key used besides that. You can access the menu by right clicking the aforementioned lock icon. DM channels have different options than group channels.
For more information visit: https://gitlab.com/An0/SimpleDiscordCrypt

It is 100% open-source!

(all your data is stored locally on your computer so make sure to use the export function for backups)                    

एक्सटेंशन की मूल जानकारी

नाम SimpleDiscordCrypt SimpleDiscordCrypt
ID hbplgmpfdabobhnadbfpknppljdfkiia
आधिकारिक URL https://chromewebstore.google.com/detail/simplediscordcrypt/hbplgmpfdabobhnadbfpknppljdfkiia
विवरण Discord message encryption plugin, it gives end-to-end clientside encryption for your messages and files with automatic key exchange
फ़ाइल का आकार 48.95 KB
स्थापना संख्या 2,299
वर्तमान संस्करण 6.7.3.3
अंतिम अपडेट 2023-12-07
प्रकाशन तिथि 2020-05-29
रेटिंग 4.53/5 कुल 19 रेटिंग्स
डेवलपर An0
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gitlab.com/An0/SimpleDiscordCrypt
गोपनीयता नीति पृष्ठ URL https://gitlab.com/An0/SimpleDiscordCrypt/blob/master/PrivacyPolicy.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SimpleDiscordCrypt",
    "version": "6.7.3.3",
    "description": "Discord message encryption plugin, it gives end-to-end clientside encryption for your messages and files with automatic key exchange",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/gitlab.com\/",
        "https:\/\/cdn.discordapp.com\/",
        "https:\/\/discord.com\/",
        "https:\/\/ptb.discord.com\/",
        "https:\/\/canary.discord.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "SimpleDiscordCryptLoader.js"
            ],
            "matches": [
                "https:\/\/*.discord.com\/channels\/*",
                "https:\/\/*.discord.com\/activity",
                "https:\/\/*.discord.com\/login*",
                "https:\/\/*.discord.com\/app",
                "https:\/\/*.discord.com\/library",
                "https:\/\/*.discord.com\/store",
                "https:\/\/*.discord.com\/guild-discovery"
            ],
            "run_at": "document_start"
        }
    ]
}