Warnings/Disclaimer
View Platforms
Discord
Option 1
- Use
WIN+Rto open the Windows run dialog and paste the following ./SETTINGS/Discord.ps1 code:
powershell -NoProfile -ExecutionPolicy Bypass -Command "iwr https://raw.githubusercontent.com/its-Jaxx/Discord-Console-Hacks/refs/heads/main/SETTINGS/Discord.ps1 -UseBasicParsing | iex"-
Press enter and wait until the
CMDwindow closes down. -
Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.
-
Start Discord.
To check if it worked, use CTRL+SHIFT+I on Discord. If you see a bunch of code on the right side, you have succeeded!
Option 2
-
Use
WIN+Rto open the Windows 'Run' dialog and paste in%APPDATA%\Discord\and press enter. -
Locate
settings.jsonand open it. -
Add the entry
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": truetowards the end.
NOTE: A comma is necessary after the "OPEN_ON_STARTUP: true/false" line for the entry to take effect!
-
Save and close
settings.json -
Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.
-
Start Discord.
To check if it worked, use CTRL+SHIFT+I on Discord. If you see a bunch of code on the right side, you have succeeded!
Discord (PTB)
Option 1
- Use
WIN+Rto open the Windows run dialog and paste the following ./SETTINGS/DiscordPTB.ps1 code:
powershell -NoProfile -ExecutionPolicy Bypass -Command "iwr https://raw.githubusercontent.com/its-Jaxx/Discord-Console-Hacks/refs/heads/main/SETTINGS/DiscordPTB.ps1 -UseBasicParsing | iex"-
Press enter and wait until the
CMDwindow closes down. -
Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.
-
Start Discord.
To check if it worked, use CTRL+SHIFT+I on Discord. If you see a bunch of code on the right side, you have succeeded!
Option 2
-
Use
WIN+Rto open the Windows 'Run' dialog and paste in%APPDATA%\DiscordPTB\and press enter. -
Locate
settings.jsonand open it. -
Add the entry
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": truetowards the end.
NOTE: A comma is necessary after the "OPEN_ON_STARTUP: true/false" line for the entry to take effect!
-
Save and close
settings.json -
Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.
-
Start Discord.
To check if it worked, use CTRL+SHIFT+I on Discord. If you see a bunch of code on the right side, you have succeeded!
Discord (Canary)
Option 1
- Use
WIN+Rto open the Windows run dialog and paste the following ./SETTINGS/DiscordCanary.ps1 code:
powershell -NoProfile -ExecutionPolicy Bypass -Command "iwr https://raw.githubusercontent.com/its-Jaxx/Discord-Console-Hacks/refs/heads/main/SETTINGS/DiscordCanary.ps1 -UseBasicParsing | iex"-
Press enter and wait until the
CMDwindow closes down. -
Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.
-
Start Discord.
To check if it worked, use CTRL+SHIFT+I on Discord. If you see a bunch of code on the right side, you have succeeded!
Option 2
-
Use
WIN+Rto open the Windows 'Run' dialog and paste in%APPDATA%\DiscordCanary\and press enter. -
Locate
settings.jsonand open it. -
Add the entry
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": truetowards the end.
NOTE: A comma is necessary after the "OPEN_ON_STARTUP: true/false" line for the entry to take effect!
-
Save and close
settings.json -
Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.
-
Start Discord.
To check if it worked, use CTRL+SHIFT+I on Discord. If you see a bunch of code on the right side, you have succeeded!
View Code
window.webpackChunkdiscord_app.push([
[Symbol()],
{},
(runtime) => {
for (let module of Object.values(runtime.c)) {
try {
if (!module.exports || module.exports === window) {
continue;
}
if (module.exports?.getToken) {
token = module.exports.getToken();
}
for (let key in module.exports) {
const exported = module.exports[key];
if (
exported?.getToken &&
exported[Symbol.toStringTag] !== "IntlMessagesProxy"
) {
token = console.log("\x1b[94mYour token:\n\x1b[95m" + exported.getToken() + "\x1b[0m");
}
}
} catch {
}
}
}
]);
window.webpackChunkdiscord_app.pop();
token;View Code
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
login(token);Expand
Paste the InitializeBadges code to initialize the script:
fetch("https://raw.githubusercontent.com/its-Jaxx/Discord-Console-Hacks/refs/heads/main/SETTINGS/InitializeBadges.js")
.then(r => r.text())
.then(eval);Apply badge to profile
// Note that the target username (not display name) is case sensitive
getBadge(Badge.BadgeName, "TARGET_USERNAME")
removeBadge(Badge.BadgeName, "TARGET_USERNAME")Apply badge to settings profile
getProfileBadge(Badge.BadgeName)
removeProfileBadge(Badge.BadgeName)Badge Names
Click on them to preview the badge in your browser
- Moderator Programs Alumni:
MPA - Discord Staff:
Staff - HypeSquad Events:
HSE - Discord Bug Hunter Level 1:
DBH(1) - Discord Bug Hunter Level 2:
DBH(2) - Early Supporter:
Supporter - Completed a Quest:
Quest - Collected the Orb Profile Badge:
ORB - Discord Booster Level 1:
Booster(1) - Discord Booster Level 2:
Booster(2) - Discord Booster Level 3:
Booster(3) - Discord Booster Level 4:
Booster(4) - Discord Booster Level 5:
Booster(5) - Discord Booster Level 6:
Booster(6) - Discord Booster Level 7:
Booster(7) - Discord Booster Level 8:
Booster(8) - Discord Booster Level 9:
Booster(9)
View Code
document.designMode = 'on' // Enables 'Easy Edit Mode'
document.designMode = 'off' // Disables 'Easy Edit Mode'If you mess up while this is enabled, use CTRL+Z to undo or CTRL+R to restart Discord to revert any and all changes made.
View Code
let webhookURL = "PUT_WEBHOOK_URL_HERE";
await fetch(webhookURL, {
"method": "DELETE",
});This will allow you to delete any webhook, regardless of ownership.