V
V
Vadim Solovyov2022-03-03 16:35:09
Browser extensions
Vadim Solovyov, 2022-03-03 16:35:09

Which extension can be used to visually highlight certain tabs in the Google Chrome browser?

6220c407d64e9709191207.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
Nadim Zakirov, 2022-03-03
@VadimSoloviev

You open the console and with one pre-prepared command you change the favicon of the site to your pre-prepared favicon. Your own favicon can be any color or shape. No extensions are needed.
PS Vadim Solovyov Go to any site, open the console using the combination Ctrl + Shift + J .
Then just paste the code below and press Enter:

document.querySelector('link[rel*="icon"]').outerHTML = `<link href="data:image/svg+xml;charset=UTF-8,%3Csvg%20%20xmlns='http://www.w3.org/2000/svg'%20width='100'%20height='100'%3E%3Ccircle%20cx='50'%20cy='50'%20r='50'%20fill='red'%20/%3E%3C/svg%3E" rel="shortcut icon" type="image/svg+xml">`;

This will change the site's favicon to a red circle. The color of the circle can be changed, just specify in the code above instead of the word red you need a color, for example green :
document.querySelector('link[rel*="icon"]').outerHTML = `<link href="data:image/svg+xml;charset=UTF-8,%3Csvg%20%20xmlns='http://www.w3.org/2000/svg'%20width='100'%20height='100'%3E%3Ccircle%20cx='50'%20cy='50'%20r='50'%20fill='green'%20/%3E%3C/svg%3E" rel="shortcut icon" type="image/svg+xml">`;

6221a7d4f160f274722860.png

V
Vasily Bannikov, 2022-03-03
@vabka

By the number of open tabs, it seems to me that you actually need bookmarks or pinned tabs.
Well, or https://www.blog.google/products/chrome/manage-tab...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question