NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Facebook on Tahoma // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.facebook.com/* // @grant none // @require https://code.jquery.com/jquery-3.2.1.min.js // @run-at document-body // @updateURL https://openuserjs.org/meta/hassoon3/Facebook_on_Tahoma.meta.js // ==/UserScript== (function($) { 'use strict'; var style = "body, button, input, label, select, td, textarea { " + "font-family: Tahoma;" + "}"; var styleDom = $('<style type="text/css"></style>'); styleDom.text(style); $('body').append(styleDom); })(jQuery);