Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Learn More

Highlight visited links

  • 3 odpowiedzi
  • 43 osoby mają ten problem
  • 3 wyświetlenia
  • Ostatnia odpowiedź od thejase

more options

I have a bookmarklet that sets a strike-through style on visited links so I can tell them out in sites that don't display them in a different colour (such us Mozilla Support). This no longer works in Firefox 4. What are my alternatives?

I have a bookmarklet that sets a strike-through style on visited links so I can tell them out in sites that don't display them in a different colour (such us Mozilla Support). This no longer works in Firefox 4. What are my alternatives?

Zmodyfikowany przez Álvaro González w dniu

Wszystkie odpowiedzi (3)

more options

What is the code of that bookmarklet?

You can also do that with code in userContent.css

:visited { text-decoration : line-through !important; }

more options

The code is this:

javascript:(function(){var%20css=document.createElement('link');css.rel=%22stylesheet%22;css.href='data:text/css,'+escape(%22:visited{text-decoration:line-through%20!important;}%22);document.documentElement.childNodes[0].appendChild(css);})();

The problem is that Firefox 4 ignores text-decoration on purpose:

Privacy-related changes coming to CSS :visited

more options

I am having the exact same problem.