Greasy Fork is available in English.

StackExchange obvious followed link color

Change the color of followed links on all StackExchange sites so they they are easily distinguishable.

Od 27.07.2017.. Pogledajte najnovija verzija.

  1. // ==UserScript==
  2. // @name StackExchange obvious followed link color
  3. // @namespace http://ostermiller.org/
  4. // @version 1.01
  5. // @description Change the color of followed links on all StackExchange sites so they they are easily distinguishable.
  6. // @include /https?\:\/\/([a-z\.]*\.)?stackexchange\.com\/.*/
  7. // @include /https?\:\/\/([a-z\.]*\.)?askubuntu\.com\/.*/
  8. // @include /https?\:\/\/([a-z\.]*\.)?superuser\.com\/.*/
  9. // @include /https?\:\/\/([a-z\.]*\.)?serverfault\.com\/.*/
  10. // @include /https?\:\/\/([a-z\.]*\.)?stackoverflow\.com\/.*/
  11. // @include /https?\:\/\/([a-z\.]*\.)?answers.onstartups\.com\/.*/
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. function addCss(cssString) {
  16. var newCss = document.createElement('style');
  17. newCss.type = "text/css";
  18. newCss.innerHTML = cssString;
  19. document.getElementsByTagName('head')[0].appendChild(newCss);
  20. }
  21.  
  22. addCss (
  23. '.question-hyperlink:visited, .result-link a:visited {color: #9C7816 ! important;}'
  24. );