无聊弄了个计时器实现的随机颜色= =、
不支持IE浏览器,IE党请飘过。使用:打开WebQQ之后将相关内容粘贴在地址栏回车即可(自动遍历所有文本框)。
注意:对于Chrome浏览器请手动在地址栏输入"javascript:"(不含引号)后再粘贴,因为chrome粘贴会把"javascript:"去掉= =、
开启:
javascript:if (document.autoColor != undefined) return;document.autoColor = setInterval(function(){var e = document.getElementsByClassName('rich_editor');if (e.length==0) return;for(var key in e){e[key].style.color = '#' + Math.round(Math.random()*200).toString(16) + Math.round(Math.random()*200).toString(16) + Math.round(Math.random()*200).toString(16);}},100);
停止:
javascript:clearInterval(document.autoColor);delete document.autoColor;