Created
February 22, 2023 04:00
-
-
Save kelvie/3eebf48e7ed8f2e303c3f01a5d04fc28 to your computer and use it in GitHub Desktop.
Make archwiki links purple again
This file contains 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 Change color of visited links on ArchWiki | |
// @namespace | |
// @version 1.0 | |
// @description Changes the color of visited links on wiki.archlinux.org | |
// @author Kelvie | |
// @match https://wiki.archlinux.org/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle('#content a:not(.new):visited { color: purple !important; }'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment