Skip to content

Instantly share code, notes, and snippets.

@kelvie
Created February 22, 2023 04:00
Show Gist options
  • Save kelvie/3eebf48e7ed8f2e303c3f01a5d04fc28 to your computer and use it in GitHub Desktop.
Save kelvie/3eebf48e7ed8f2e303c3f01a5d04fc28 to your computer and use it in GitHub Desktop.
Make archwiki links purple again
// ==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