// ==UserScript== // @name 福利吧论坛页面替换为按发帖时间排序 // @namespace dadaewqq // @version 3.5 // @author https://github.com/dadaewqq/fun // @description 福利吧论坛自动按发帖时间排序(修复greasyfork现存另一脚本的bug),直接替换链接而不是再跳转 // @match https://www.wnflb99.com/* // @match https://www.wnflb2023.com/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function () { "use strict"; var all = document.querySelectorAll("[href*=forum-]"); var num = all.length; for (var i = 0; i < num; i++) { var fid = all[i].href.split("-")[1]; var newhref = "forum.php?mod=forumdisplay&fid=" + fid + "&filter=author&orderby=dateline"; all[i].href = newhref; } document.querySelector(".wp.cl").style.display = "none"; })();