The userscript I used for reading HN
// ==UserScript== // @name hackers-news // @namespace http://tampermonkey.net/ // @version 0.1 // @description improve readability of HN on PC // @author You // @match https://news.ycombinator.com/item?id=* // @grant none // ==/UserScript==
(function() { 'use strict';
// Your code here...
let style = document.createElement('style');
style.textContent = `
body > center > table {
max-width: 40em
}
a,td,.comment {
font-size: 1.25em;
line-height: 1.6;
}
`;
document.body.append(style);
})();This post does not have any comments yet