Greasy Fork 支持简体中文。

大学模拟器助手

对大学模拟器添加额外功能,目前只能保存历史最佳记录

// ==UserScript==
// @name         大学模拟器助手
// @namespace    https://github.com/SihenZhang
// @license      MIT
// @version      1.0.0
// @description  对大学模拟器添加额外功能,目前只能保存历史最佳记录
// @author       SihenZhang
// @match        https://blog.inari.site/bijiazukf/
// @icon         https://inari.site/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    bestRecord = localStorage.getItem('bestRecord') ? Number(localStorage.getItem('bestRecord')) : 0;

    const originalSetEnddataPage = setEnddataPage;
    setEnddataPage = function (player, endflag) {
        originalSetEnddataPage.call(this, player, endflag);
        localStorage.setItem("bestRecord", bestRecord);
    }
})();