A userscript is a program, usually written in JavaScript, for modifying web pages to augment browsing.
Userscripts require:
- Tampermonkey on Chrome
- GreaseMonkey on Firefox
Ever notice how many websites neglect to implement visited link colors?
This Tampermonkey/GreaseMonkey Userscript aims to implement this missing feature on the Internet. Feel free to open an issue or pull request for any major website missing it.
Note: Every line of the script must be evaluated each page load, so only well known websites should be included.
Basic Example:
a:visited {
color: purple;
}
Drastic contrast increase for the Map Markers on Craiglist. Still purple, but new and visited are obviously different now.