Last active
December 26, 2017 20:05
-
-
Save niedzielski/af381859035d49b04e32036a040e8d3d to your computer and use it in GitHub Desktop.
Bookmarklet to force links to blue, visited links to purple.
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
| javascript:(_ => { | |
| const sheet = document.createElement('style'); | |
| sheet.innerHTML = 'a { color: blue !important; } a:visited { color: purple !important; } a img { outline-width: 1px !important; outline-style: solid !important; }'; | |
| document.head.appendChild(sheet); | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment