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"입니다.
확장 프로그램 스크린샷
SimpleDiscordCrypt 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } ] } |