Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change the visited links color in Chrome?

I use Google Chrome Browser and I find the unvisited and visited links colors are too close each other. They are very hard to distinguish, at least to me.

I tried the old approach of modifying the Custom.css configuration file in Chrome's user data folder and no change occurred.

I'm open to solutions which include javascript code or css settings which I can run/modify in the developer's window (F12), even though they are not permanent settings.

like image 871
ElCharly64 Avatar asked Sep 10 '15 12:09

ElCharly64


People also ask

How do I change the color of links already visited in Chrome?

One click and the visited link stands out giving you quick visual confirmation of where you have already been. To get started, navigate to a page, toggle color links to the on (or green) position, and select your color. You can turn color links off at any time if you'd like by setting the toggle to off (or red).

How do I change the color of a link in Google?

Changing the Color of LinksFind the link you want to customize and select it. Tap the underlined letter “A” in the toolbar. Choose one of the colors or create your own to apply it to the link color.

How do I make links blue again in Chrome?

When in your account settings, go to “Personal info & privacy”. Within that section you can turn off “Your searches and browsing history”, which allegedly can turn the links back to blue.

What is the Colour of on visited link?

By default, a link will appear like this (in all browsers): An unvisited link is underlined and blue. A visited link is underlined and purple. An active link is underlined and red.


1 Answers

Here's a solution that works for all platforms and for all versions of Chrome.

  1. Install the Stylist extension.
    EDIT: Stylish extension (that extension was no longer available, this alternative should work.)

  2. Click SETTINGS in Chrome

  3. Click EXTENSIONS

  4. Find the Stylist extension and click OPTIONS

  5. Click STYLES

  6. Click ADD NEW STYLE

  7. Where it says "Style Name", name the style

  8. Click the ALL SITE check box

  9. Where it says "Stylesheet Text", copy and paste the following:
    A:visited { color: red ! important }

  10. Click SAVE

  11. Find a page with visited link, refresh, and you'll see the new color.

You can find colors you like here, and you can also use a color code like rgb(255, 0, 0) in place of red.

Source

like image 164
Vic Jang Avatar answered Sep 17 '22 08:09

Vic Jang