Hacker News (ycombinator) more readable

Forcing width to 30%

  1. // ==UserScript==
  2. // @name Hacker News (ycombinator) more readable
  3. // @description Forcing width to 30%
  4. // @version 1.1
  5. // @include https://news.ycombinator.com/*
  6. // @namespace https://greatest.deepsurf.us/users/153157
  7. // ==/UserScript==
  8.  
  9. document.getElementById('hnmain').style.width = '30%';
  10. document.getElementById('hnmain').style.minWidth = '0px';