Last active
November 28, 2021 15:09
-
-
Save gue-ni/0ae45a623dbf90f0eece9ea7d1c343bb to your computer and use it in GitHub Desktop.
Color Hackernews link for better readability
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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