Here's the post from the anon who taught me how to do this:
in google chrome do this:
1. press ctrl-shift-j
2. paste this script, DO NOT FUCKING HIT ENTER YET
(function() {
var text = prompt("Enter some text.");
var width = $(".active-cursor").width();
var height = $(".active-cursor").height();
var start = $(".active-cursor").offset();
var current = {
top: Math.round(start.top + height / 2),
left: Math.round(start.left + width / 2)
};
var i = 0;
function next() {
var c = text.charAt(i);
if (c === "\n") {
current.left = start.left;
current.top += height;
} else {
$(document.elementFromPoint(current.left, current.top)).click();
w.typeChar(c);
current.left += width;
}
i++;
if (i < text.length) {
setTimeout(next, 10);
}
}
next()
})();
3. copy the ascii you want to post
4. press enter, a prompt will come up, paste your ascii into the prompt
5. profit!
for repeat pastes you only need to go to the java console and press the up arrrow, it will recall the last script you used even if you have closed chrome and opened it again
if you don't have chrome well…why the fuck not faggot?
———————————–
Can you tell me what I need to fix?