Changes the new Pendoria font to the old one.
当前为
// ==UserScript==
// @name Pendorian Legacy Font
// @namespace https://xpuls3.github.io/
// @version 1.0
// @author Puls3
// @include /^https?:\/\/(?:.+\.)?pendoria\.net\/?(?:.+)?$/
// @icon https://raw.githubusercontent.com/xPuls3/Pendorian-Elite-UI/master/favicon.ico
// @grant none
// @run-at document-start
// @description Changes the new Pendoria font to the old one.
// ==/UserScript==
// This script was created by Puls3!
// - Puls3 on Pendoria
let style = `
body {
font-family: helvetica, arial;
}
`;
window.addEventListener("load", function() {
let element = document.createElement("style");
element.innerText = style;
element.classList.add("legacy-font-style");
document.head.append(element);
});