SimpleDiscordCrypt

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

什么是SimpleDiscordCrypt?

SimpleDiscordCrypt是由An0开发的Chrome扩展程序,该扩展的主要功能是“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

下载SimpleDiscordCrypt扩展crx文件

下载SimpleDiscordCrypt扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}