Greasy Fork is available in English.
作者主页只显示30天内的评论
// ==UserScript==// @name 折叠greasyfork过期讨论// @namespace http://tampermonkey.net/// @version 1.1// @description 作者主页只显示30天内的评论// @author kakasearch// @match https://greasyfork.org/*/users*// @grant none// ==/UserScript==(function() {'use strict';let items = document.querySelectorAll("#user-discussions-on-scripts-written > section > div")let now = new Date()let num = 0for(let item of items){let item_time = item.querySelector('relative-time').dateif(now - new Date(item_time)>24*3600*1000*30){item.style.display="none"num += 1}}})();