您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
作者主页只显示30天内的评论
当前为
// ==UserScript== // @name 折叠greasyfork过期讨论 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 作者主页只显示30天内的评论 // @author kakasearch // @match https://gf.qytechs.cn/*/users* // @grant none // ==/UserScript== (function() { 'use strict'; let items = document.querySelectorAll("#user-discussions-on-scripts-written > section > div") let now = new Date() let num = 0 for(let item of items){ let item_time = item.querySelector('gf-relative-time').date if(now - new Date(item_time)>24*3600*1000*30){ item.style.display="none" num += 1 } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址