Greasy Fork is available in English.

TurboFicks

Fixes broken links on Turbobricks

// ==UserScript==
// @name         TurboFicks
// @namespace    http://turbobricks.com/
// @version      245+T
// @description  Fixes broken links on Turbobricks
// @author       pinguin
// @license      gnu gpl
// @include      *turbobricks.com/showthread.php*
// @include      *turbobricks.com/showpost.php*
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

 const thread = /\?t\=/ ;
 const post = /\?p\=/ ;
 const regex = /.*show(?:post|thread)\.php\?(?:p|t)\=([0-9]+).*/i;

if (thread.exec(window.location.href)) {
    // make thread url;
    window.location.href = window.location.href.replace(regex, "https://turbobricks.com/index.php?threads/$1");
}
else if (post.exec(window.location.href)) {
    // make post url
    window.location.href = window.location.href.replace(regex, "https://turbobricks.com/index.php?posts/$1");
};