Last active
August 15, 2020 17:05
-
-
Save Jacajack/1edad2b83a0da0609921d9e3299c44de to your computer and use it in GitHub Desktop.
Messenger color chat change spammer
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
/* | |
Just paste into your browser javascript console while on https://www.messenger.com | |
Only requires right hand side menu with colors and nicknames to be opened. | |
I DO NOT TAKE ANY RESPONSIBILITY FOR POSSIBLE CONSEQUENCES OF USAGE OF THIS SCRIPT | |
Enjoy... | |
*/ | |
function pick( ) | |
{ | |
document.getElementsByClassName( "_5dr4" )[( Math.random( ) * 15 ).toFixed( 0 )].click( ); | |
} | |
function colorspam( ) | |
{ | |
document.getElementsByClassName( "_3szq" )[2].click( ); | |
setTimeout( pick, 1000 / freq / 2 ); | |
} | |
var freq = 10; | |
var colorspamThread = setInterval( colorspam, 1000 / freq ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment