Skip to content

Instantly share code, notes, and snippets.

@gue-ni
Last active November 28, 2021 15:09
Show Gist options
  • Save gue-ni/0ae45a623dbf90f0eece9ea7d1c343bb to your computer and use it in GitHub Desktop.
Save gue-ni/0ae45a623dbf90f0eece9ea7d1c343bb to your computer and use it in GitHub Desktop.
Color Hackernews link for better readability
// ==UserScript==
// @name Color hackernews links
// @namespace http://tampermonkey.net/
// @version 1.0
// @description try to take over the world!
// @author You
// @match https://news.ycombinator.com/
// @icon https://www.google.com/s2/favicons?domain=ycombinator.com
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle (`
.titlelink {
color: #0000EE !important;
}
a:visited {
color: #551A8B !important;
}
` );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment