Skip to content

Instantly share code, notes, and snippets.

View DodoGames7's full-sized avatar
🍕
Pizza?

dodoGames DodoGames7

🍕
Pizza?
View GitHub Profile
@DodoGames7
DodoGames7 / anonymise.js
Created October 14, 2021 21:17 — forked from insertish/anonymise.js
Randomise your Steam purchases for safely fucking with scammers.
[...document.querySelectorAll('.wallet_table_row')]
.map(x => {
if (x.querySelector('.wht_items').innerText.includes('£')) return x.parentElement.removeChild(x);
let amount = (Math.random() * 20).toFixed(2);
x.querySelector('.wht_total').innerText = "£" + amount;
x.querySelector('.wht_wallet_change').innerText = "-£" + amount;
x.querySelector('.wht_wallet_balance').innerText = "£0.00";
});
[...document.querySelectorAll('.wth_payment')].map(x => x.innerText = 'Visa **37');
@DodoGames7
DodoGames7 / modding_discord.md
Created August 22, 2021 22:47 — forked from vanyle/modding_discord.md
Modding the Discord client

Modding the discord client

Disclaimer: Modding the discord client is against Discord's term of service. I'm not responsible if any action is taken against you.

Why modding ?

Modding the client will allow you to customize to:

  • change the appearance of the discord client
  • have script to automaticaly send messages at specific times
  • log messages from a chat into a local file

This guide will explain how to inject js code into the discord client and send messages. I'm assuming you know you to write javascript code and are using Windows.