Is there a Google Chrome extension that highlights all links on a webpage like when I do Ctrl-F?
Asked
Active
Viewed 9,873 times
7
-
You can try this one : https://chrome.google.com/webstore/detail/website-links-checker/lhghoodlnemlhdiefakhjnegandfbamm – Keral Patel Sep 03 '23 at 07:39
1 Answers
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.

Daniel Beck
- 110,419