MetaFilter embiggen small hyperlinks

Makes small hyperlinks in comments on MetaFilter.com and all subsites larger. Helpful on mobile devices.

  1. // ==UserScript==
  2. // @name MetaFilter embiggen small hyperlinks
  3. // @description Makes small hyperlinks in comments on MetaFilter.com and all subsites larger. Helpful on mobile devices.
  4. // @author Tehhund
  5. // @match *://*.metafilter.com/*
  6. // @version 15
  7. // @namespace https://greasyfork.org/users/324881
  8. // ==/UserScript==
  9.  
  10. (function() {document.head.innerHTML += ('<style> .smallcopy > a:link, .smallcopy > span > span > a:link { font-size: 130% ; } </style>');} )();