7

Is there a Google Chrome extension that highlights all links on a webpage like when I do Ctrl-F?

slhck
  • 228,104
user123
  • 73
  • You can try this one : https://chrome.google.com/webstore/detail/website-links-checker/lhghoodlnemlhdiefakhjnegandfbamm – Keral Patel Sep 03 '23 at 07:39

1 Answers1

19

Create a new bookmark in Chrome's bookmarks bar and set its address to the following JavaScript code:

javascript:(function(){for(i=0;i<document.links.length;i++)document.links[i].style.backgroundColor='#ffff00';})();

(instead of http://example.org)

When you click that bookmarklet, all links on the page will get yellow background color. No need for an extension.

enter image description here

Daniel Beck
  • 110,419