Greasy Fork is available in English.

Fix line numbers on github

Fixes the fact that line numbers fuck up on github

  1. // ==UserScript==
  2. // @name Fix line numbers on github
  3. // @description Fixes the fact that line numbers fuck up on github
  4. // @author Sebastian Paaske Tørholm
  5. // @namespace http://mathemaniac.org
  6. // @include http://github.com/*
  7. // @include https://github.com/*
  8. // @version 1.0.1
  9. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js
  10. // ==/UserScript==
  11. $(document).ready( function() {
  12. $("#files .file .data pre, #files .file .line-data, #files .file .line-number").css("font-size", "113%");
  13. });