Skip to content

its-Jaxx/Discord-Console-Hacks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 

Repository files navigation

Warnings/Disclaimer

⚠️ I am not affiliated with Discord and do not encourage using these scripts. Client modifications of any kind is against Discords terms of use and may result in actions being taken against your account.


Enable Inspect Element

View Platforms
Discord
Option 1
  1. Use WIN+R to 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"
  1. Press enter and wait until the CMD window closes down.

  2. Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.

  3. 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
  1. Use WIN+R to open the Windows 'Run' dialog and paste in %APPDATA%\Discord\ and press enter.

  2. Locate settings.json and open it.

  3. Add the entry "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true towards the end.

NOTE: A comma is necessary after the "OPEN_ON_STARTUP: true/false" line for the entry to take effect!

  1. Save and close settings.json

  2. Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.

  3. 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
  1. Use WIN+R to 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"
  1. Press enter and wait until the CMD window closes down.

  2. Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.

  3. 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
  1. Use WIN+R to open the Windows 'Run' dialog and paste in %APPDATA%\DiscordPTB\ and press enter.

  2. Locate settings.json and open it.

  3. Add the entry "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true towards the end.

NOTE: A comma is necessary after the "OPEN_ON_STARTUP: true/false" line for the entry to take effect!

  1. Save and close settings.json

  2. Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.

  3. 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
  1. Use WIN+R to 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"
  1. Press enter and wait until the CMD window closes down.

  2. Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.

  3. 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
  1. Use WIN+R to open the Windows 'Run' dialog and paste in %APPDATA%\DiscordCanary\ and press enter.

  2. Locate settings.json and open it.

  3. Add the entry "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true towards the end.

NOTE: A comma is necessary after the "OPEN_ON_STARTUP: true/false" line for the entry to take effect!

  1. Save and close settings.json

  2. Fully shut down Discord, it helps to use 'Task Manager' to ensure it is fully closed.

  3. 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!


Copy Discord Token

View Code

⚠️ Remember to never give out your token to anyone as it will allow them to login to your Discord account. ⚠️

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;

Login Using Discord 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);

Apply Discord Badges (Only locally visible)

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


Easy Edit Mode

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.


Delete Webhook

View Code
let webhookURL = "PUT_WEBHOOK_URL_HERE";

await fetch(webhookURL, {
  "method": "DELETE",
});

This will allow you to delete any webhook, regardless of ownership.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •