// ==UserScript== // @name 富贵论坛快捷回复(帝王哥) // @namespace NewFly // @version 1.2 // @description 帝王哥富贵论坛快捷回复暂时只支持富贵论坛使用 // @author NewFly // @match https://www.fglt.net/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.autoreply = function (){ //显示回复窗口 document.getElementById("post_reply").click(); //showWindow('reply', 'forum.php?mod=post&action=reply&tid='+tid) //在富文本编辑框中输入内容 window.setTimeout(function(){writetext()},500); //提交回复 window.setTimeout(function(){clicksubmitbutton()}, 500); } window.writetext = function (){ document.getElementById("postmessage").value="来看看,支持一下!"; } window.clicksubmitbutton = function (){ document.getElementById("postsubmit").click(); } document.getElementById("scrolltop").insertAdjacentHTML("afterEnd",'
'); // Your code here... })();