您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在文玩部落的隐藏贴自动回复
当前为
// ==UserScript== // @name let me in // @version 0.0.0.1 // @description 在文玩部落的隐藏贴自动回复 // @include /.*www.haohetao.com/thread-[0-9]*-[0-9]*-[0-9]*.html/ // @author AkiyamaYummy // @namespace https://greasyfork.org/users/9356 // ==/UserScript== if(document.getElementsByClassName('locked').length > 0) { var tid = /[0-9]*(?=-[0-9]*-[0-9]*.html)/.exec(location.href)[0]; setTimeout("showWindow('reply', 'http://www.haohetao.com/forum.php?mod=post&action=reply&tid=' + tid);",1000); setTimeout("postmessage.textContent = '自动回复脚本,由 [url=http://www.haohetao.com/home.php?mod=space&uid=500854]我[/url] 制作';postsubmit.click();",2000); setTimeout("fwin_dialog_submit.click();",3000) }