Skip to content

Instantly share code, notes, and snippets.

@Glench
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Glench/b1a99b5e75d50e162411 to your computer and use it in GitHub Desktop.
Save Glench/b1a99b5e75d50e162411 to your computer and use it in GitHub Desktop.
Wikipedia visited
var body = document.querySelector('body');
var styleNode = document.createElement('style');
var cssTextNode = document.createTextNode('#content a:visited { color: rgb(41, 229, 41) !important; }');
styleNode.appendChild(cssTextNode);
body.appendChild(styleNode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment