- Step 1: Download 7-ZIP and the ASAR plugin from [
https://www.tc4shell.com/en/7zip/asar/] - Step 2: After installing 7-ZIP create a new folder inside of its install location called
Formats - Step 3: Extract the
.dllfrom one of the folders in the archive (x64 or 32) to theFormatsfolder - Step 4: Go to
C:\Users\**YourUsername**\AppData\Local\Discord\app-1.0.9007\modules\discord_desktop_core-1\discord_desktop_core(Replace**YourUsername**with your username) - Step 5: Open the
core.asarfile with 7-ZIP and extract its content to a folder of your choice - Step 6: Enter the folder and go to the
appsubdirectory, after that find the file calledmainWindow.jsormainScreen.jsand open it with a text editor of your choice - Step 7: Go to
line 419and changeframe: falsetoframe: true, if you can't find that text pressCTRL+Fand search forframe: false, it should look like the one attached in the screens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let cache; webpackChunkdiscord_app.push([["wp_isdev_patch"], {}, r => cache=r.c]); | |
| var UserStore = Object.values(cache).find(m => m?.exports?.default?.getUser).exports.default; | |
| var actions = Object.values(UserStore._dispatcher._actionHandlers._dependencyGraph.nodes); | |
| var user = UserStore.getCurrentUser(); | |
| actions.find(n => n.name === "ExperimentStore").actionHandler.CONNECTION_OPEN({ | |
| type: "CONNECTION_OPEN", user: {flags: user.flags |= 1}, experiments: [], | |
| }); | |
| actions.find(n => n.name === "DeveloperExperimentStore").actionHandler.CONNECTION_OPEN(); | |
| webpackChunkdiscord_app.pop(); user.flags &= ~1; "done"; |