Monospace everything. Keep things simple.
// @ts-check
// ==UserScript==
// @name Monospace All Sites
// @version 0.2
// @description Monospace everything. Keep things simple.
// @match *://*/*
// @grant none
// @run-at document-body
// @license MIT
// @namespace MEMIJE.IO
// @author MEMIJE.IO
// ==/UserScript==
(function () {
'use strict';
const style = document.createElement('style');
style.innerHTML = `
*:not([class*="icon"], [class*="symbol"] , i) {
font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace !important;
}
`;
document.getElementsByTagName('head')[0].appendChild(style);
})();