How to prevent colour-change for visited links

0

I want no colour-change when I click a link, even when history is enabled in a browser. In this context I am using Vivaldi, but I assume the settings to be same for all chromium-based browsers. Can I get the default colour of the link, as if the link has not been clicked?

I did not find equivalent of Firefox's "layout.css.visited_links_enabled" in Chromium.

I can use the following in Stylish, but I don't want that behaviour. The colours should be the default colour of the link, not the one which I provide.

a:visited { color: #0000AA !important; } a:link { color: #0000AA !important; }

In short, using Firefox terminology, how to disable the layout.css.visited_links in Chromium?

Edit: This is not a duplicate of change-color-of-visited-links-in-chrome-33. I do not want to set any colour. I want the colour not to change when clicked - it should remain whatever it was before I clicked. That the answer in the other question is nothing about "disable the layout.css.visited_links", which is the behaviour I am looking for.

Jayadevan Vijayan

Posted 2019-04-20T04:30:34.937

Reputation: 121

Possible duplicate of Change color of visited links in Chrome 33

– harrymc – 2019-04-20T08:46:56.460

No answers