Pesquisas recentes


Sem pesquisas recentes

Jonathan Coleman's Avatar

Jonathan Coleman

Entrou em 16 de abr. de 2021

·

Última atividade em 27 de out. de 2021

Seguindo

0

Seguidores

0

Atividade total

5

Votos

2

Assinatura

1

VISÃO GERAL DA ATIVIDADE

Atividade mais recente por Jonathan Coleman

Jonathan Coleman comentou,

Comentário na comunidade 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.

Exibir comentário · Publicado 13 de nov. de 2018 · Jonathan Coleman

0

Seguidores

0

Votos

0

Comentários


Jonathan Coleman comentou,

Comentário na comunidade 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

Exibir comentário · Publicado 30 de ago. de 2018 · Jonathan Coleman

0

Seguidores

0

Votos

0

Comentários