Greasy Fork is available in English.

remove google "Roboto" font

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       wuzhizhemu569@gmail.com
// @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';
       }
   };
})();