Drudgery

centered and unboldened

  1. // ==UserScript==
  2. // @name Drudgery
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.1
  5. // @description centered and unboldened
  6. // @author dan@garthwaite.org
  7. // @match https://drudgereport.com/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. $("body").css("max-width", "80em").css("margin-left", "auto").css("margin-right", "auto");
  14. $("a").css("text-decoration", "none").css("font-weight", "normal");
  15. // Your code here...
  16. })();