Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brunos3d/discord-enable-devtools
🚀 zx - Bring your Discord's devtools back to life (again)
https://github.com/brunos3d/discord-enable-devtools
bash config console debug developer-tools devtools discord enable inspector script shell zx
Last synced: 4 days ago
JSON representation
🚀 zx - Bring your Discord's devtools back to life (again)
- Host: GitHub
- URL: https://github.com/brunos3d/discord-enable-devtools
- Owner: brunos3d
- Created: 2022-03-08T19:40:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T13:30:38.000Z (6 months ago)
- Last Synced: 2024-05-22T14:46:30.068Z (6 months ago)
- Topics: bash, config, console, debug, developer-tools, devtools, discord, enable, inspector, script, shell, zx
- Language: JavaScript
- Homepage:
- Size: 21.5 KB
- Stars: 24
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# discord-enable-devtools
Bring your Discord's devtools back to life
## TL;DR
Discord devtools was disabled, [see more](https://www.reddit.com/r/discordapp/comments/sc61n3/cant_inspect_element_anymore/hu4fw5x/).
You can enable it again by adding the following property to your desktop application's `config.json` file:
`"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true`## About this project
I made this project just to study some features of [zx](https://github.com/google/zx), as silly as it sounds, I learned a lot. I also did it because I imagine people must be asking themselves "Where is devtools?" I hope one way or another this helps you.
## Quick way, npx + zx (Method 1)
Just run
```sh
npx zx https://raw.githubusercontent.com/BrunoS3D/discord-enable-devtools/main/index.mjs
```It's ready now just restart discord
## Manually enable (Method 2)
Open config file with vscode (or whatever you use)
Win
```sh
code %appdata%/discord/settings.json
```Linux
```sh
code ~/.config/discord/settings.json
```macOS
```sh
code ~/Library/Application Support/discord/settings.json
```Just add the following property to the config file:
```json
{
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true,
// ...
}
```It's ready, now, just restart your Discord app