您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes thread titles to link to the last unread post, rather than the first page
// ==UserScript== // @name ResetEra Thread Title Last Unread // @namespace http://tampermonkey.net/ // @version 1.0 // @description Changes thread titles to link to the last unread post, rather than the first page // @author A Spooky Ghost // @match https://www.resetera.com/* // @grant none // ==/UserScript== (function() { 'use strict'; console.log("Boo its me a spooky ghost"); // set unread as the default title link $('h3.title').each(function() { var titleLink = $('a', this).not('.unreadLink'); var opLink = titleLink.attr('href'); titleLink.attr('href', opLink + "unread"); } ); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址