Cosmic Sans

Takes your favourite pages and changes the font to something not so pleasent.

当前为 2016-02-06 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Cosmic Sans
  3. // @namespace https://greasyfork.org/en/users/28185-bit
  4. // @version 1.0.1
  5. // @description Takes your favourite pages and changes the font to something not so pleasent.
  6. // @author Bit
  7. // @include *//*
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. var all = document.all;
  12. for (var i=0; i<all.length; i++) {
  13. all[i].style.fontFamily = "'Comic Sans MS'";
  14. }
  15. })(); void 0;