Skip to content

Instantly share code, notes, and snippets.

@dunhamsteve
Last active January 4, 2016 04:59
Show Gist options
  • Save dunhamsteve/8572389 to your computer and use it in GitHub Desktop.
Save dunhamsteve/8572389 to your computer and use it in GitHub Desktop.
Hacker News tweaks: save as hn.user.js, drop on chrome://extensions page.
// ==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; } "+
"body { background-color: #f6f6ef; } "+
".comment { font-size: 12px; } "+
".votearrow:before { content: '▲'; line-height: 1.2; font-size: 80%; } "+
".votearrow { background: inherit !important; color: grey; }";
document.head.appendChild(s);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment