Búsquedas recientes


No hay búsquedas recientes

Jonathan Coleman's Avatar

Jonathan Coleman

Incorporación 16 abr 2021

·

Última actividad 27 oct 2021

Seguimientos

0

Seguidores

0

Actividad total

5

Votos

2

Suscripción

1

RESUMEN DE LA ACTIVIDAD

Última actividad de Jonathan Coleman

Jonathan Coleman hizo un comentario,

Comentario de la comunidad Q&A - Tickets and email

@Andriy

You will need to install an extension which allows user scripts. For example Tampermonkey for Chrome. From the extension, add a new script and copy/paste in the code.

The shortcut key combo I assigned in the script is CTRL + SHIFT + Z.

Ver comentario · Publicado 13 nov 2018 · Jonathan Coleman

0

Seguidores

0

Votos

0

Comentarios


Jonathan Coleman hizo un comentario,

Comentario de la comunidad Q&A - Tickets and email

This should work in Chrome (probably any other modern browser too) and prevents the issue Olaf describes.

javascript:(function () {[...document.querySelectorAll('li.tab .close')].reverse().forEach(btn => btn.click())})()
 
and if you want to close all but the selected tab:
 
javascript:(function () {[...document.querySelectorAll('li.tab:not(.selected) .close')].reverse().forEach(btn => btn.click())})()
 
And if you want to use it with a keyboard shortcut, you can use this user script I created:
 
 
Thanks Andrew for the inspiration

Ver comentario · Publicado 30 ago 2018 · Jonathan Coleman

0

Seguidores

0

Votos

0

Comentarios