NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Yahoo Sans Bad
// @namespace https://www.reddit.com/user/1-760-706-7425
// @version 0.1.3
// @author 1-760-706-7425
// @description Yahoo Sans is bad and should feel bad.
// @copyright 2019, 1-760-706-7425 (https://openuserjs.org/users/1-760-706-7425)
// @license MIT
// @updateURL https://openuserjs.org/meta/1-760-706-7425/Yahoo_Sans_Bad.meta.js
// @match http*://*.fantasysports.yahoo.com/*
// @match http*://sports.yahoo.com/fantasy/*
// @require https://code.jquery.com/jquery-3.4.1.min.js
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
(function($) {
'use strict';
const preferred = "'Helvetica Neue',Helvetica,Arial,sans-serif"
GM_addStyle(`body { font-family: ${preferred} !important; }`);
GM_addStyle(`.YahooSans { font-family: ${preferred} !important; }`);
}(jQuery.noConflict(true)));