Greasy Fork is available in English.
Show progress towards mod master
// ==UserScript==
// @name Torn: Mod Master Helper
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Show progress towards mod master
// @author Untouchable [1360035]
// @match https://www.torn.com/loader.php?sid=itemsMods
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(() => {
let title = $('#itemMods')[0].children[0].children[0].innerText;
$('#itemMods')[0].children[0].children[0].innerText = title + " - " + $('.mods')[0].children.length + "/20";
},500)
})();