Last active
August 29, 2015 14:09
-
-
Save Glench/b1a99b5e75d50e162411 to your computer and use it in GitHub Desktop.
Wikipedia visited
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
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