// ==UserScript==
// @name keylol 添加只看我的
// @description keylol 添加"只看我的"链接
// @author Splash
// @namespace https://greasyfork.org/users/101223
// @version 0.2
// @match https://keylol.com/t*
// @match https://keylol.com/forum.php?mod=viewthread&tid=*
// @downloadURL none
// ==/UserScript==
(function () {
'use strict';
jQuery('.plc div.authi>a[rel=nofollow]').eq(0).after(`|只看我的`);
})();