Cosmic Sans

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

  1. // ==UserScript==
  2. // @name Cosmic Sans
  3. // @namespace https://greasyfork.org/en/users/28185-bit
  4. // @version 1.0.2
  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;