Greasy Fork is available in English.
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");
}
);
})();