|
@ldw4033
我自己写了个小脚本屏蔽了
```js
// ==UserScript==
// @name rmHotTopic
// @author Nessaj
// @include https://fex.com/*
// @require https://code.jquery.com/jquery-3.7.1.min.js
// @description Remove annoying FSHEX hot topics.
// @version 1
// @grant none
// ==/UserScript==
const t = $("#TopicsHot");
if (t) {
t.remove();
}
``` |