// ==UserScript== // @match https://news.ycombinator.com/* // ==/UserScript== (function () { document.body.style.backgroundColor = "#f6f6ef"; var s = document.createElement('style'); s.innerText = "td.default {max-width: 40em; }"; document.head.appendChild(s); })()