// ==UserScript==
// @name arxiv html beautify
// @namespace http://tampermonkey.net/
// @version 0.1
// @description beautify arxiv
// @author dlutor
// @match https://arxiv.org/html/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=arxiv.org
// @grant none
// @license MIT
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
window.onload=function(){
document.querySelector("body > header.desktop_header").remove();
document.querySelector("#main > div > div.package-alerts.ltx_document > button > span").click();
const style = document.createElement('style');
style.innerHTML = `.ltx_p, .ltx_abstract .ltx_p{ font-family: 'STIX Two Math';} .ltx_transformed_inner>.ltx_p{ font-family: auto;}`;
document.head.appendChild(style);
document.querySelector("#openForm").remove();
}
// Your code here...
})();