Skip to content

Instantly share code, notes, and snippets.

View rougetimelord's full-sized avatar
🤪

Rouge rougetimelord

🤪
  • Seattle
View GitHub Profile
@rougetimelord
rougetimelord / twitch.js
Last active January 16, 2025 21:18
Spam twitch chat easily
//By rouge(https://github.com/rougetimelord) (c)2016
//Purpose: Create randomly uppercased strings to spam the chats of "twitchplays" streams
//Hook text box
var field = document.getElementsByClassName("js-chat_input")[0];
//Initialize attached text box
var div = document.createElement("div");
div.style.position = "absolute"; div.style.top = "0px"; div.style.left = "0px"; div.style.color = "#FFF"; div.style.zIndex = "100";
var form = document.createElement('form');
var txt = document.createElement('input');
txt.type = 'text'; txt.name = "Cmd";