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
//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"; |
NewerOlder