====== ii-rainbow ====== **Please note**: Because it is not disabled by using the 'Disable Player Colors' link, and some players may find walls of rainbow text highly distracting, //please// be considerate in the use of this tool, particularly in public places like Banter or Outposts. // ==UserScript== // @name ii-rainbow // @description `rtext to rainbow`r // @author Full Metal Lion // @namespace http://enquirer.improbableisland.com/dokuwiki/doku.php?id=greasemonkey // @match *://*.improbableisland.com/* // @exclude *://enquirer.improbableisland.com/dokuwiki/* // @icon http://improbableisland.com/favicon.ico // @version 0.1 // @grant none // ==/UserScript== var bracketsr = /`r(.*?)`r/; //matches brackets and captures what's between them, rain=["*","Q","y","g","L","&","V"]; var rainindex=0; function nextrain(){ if (rainindex>=rain.length){ rainindex = 0; } return rain[rainindex++]; } var boxes = document.querySelectorAll('input, textarea'); for(var i=0; i