remove google "Roboto" font

this script will remove google "Roboto" font, make web page more comfotable on eye

当前为 2017-04-13 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name remove google "Roboto" font
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description this script will remove google "Roboto" font, make web page more comfotable on eye
  6. // @author wuzhizhemu569@gmail.com
  7. // @include http://*.google.com/*
  8. // @include https://*.google.com/*
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. document.onreadystatechange = function () {
  14. if (document.readyState == "complete") {
  15. document.body.style.fontFamily = 'UILanguageFont,Arial,sans-serif';
  16. }
  17. };
  18. })();