this script will remove google "Roboto" font, make web page more comfotable on eye
// ==UserScript== // @name remove google "Roboto" font // @namespace http://tampermonkey.net/ // @version 0.2 // @description this script will remove google "Roboto" font, make web page more comfotable on eye // @author [email protected] // @include http://* // @include https://* // @run-at document-start // ==/UserScript== (function() { document.onreadystatechange = function () { if (document.readyState == "complete") { document.body.style.fontFamily = 'UILanguageFont,Arial,sans-serif'; } }; })();