Greasy Fork is available in English.
keylol 添加"只看我的"链接
// ==UserScript== // @name keylol 添加只看我的 // @description keylol 添加"只看我的"链接 // @author Splash // @namespace https://greasyfork.org/users/101223 // @version 0.4 // @match https://keylol.com/t* // @match https://keylol.com/forum.php?mod=viewthread&tid=* // @grant unsafeWindow // ==/UserScript== (function () { 'use strict'; unsafeWindow.jQuery('.plc div.authi>a[rel=nofollow]').eq(0).after(`<span class="pipe">|</span><a href="forum.php?mod=viewthread&tid=${unsafeWindow.tid}&authorid=${unsafeWindow.discuz_uid}">只看我的</a>`); })();