Ricerche recenti


Nessuna ricerca recente

Jonathan Coleman's Avatar

Jonathan Coleman

Data ingresso 16 apr 2021

·

Ultima attività 27 ott 2021

Seguiti

0

Follower

0

Attività totali

5

Voti

2

Abbonamento

1

PANORAMICA ATTIVITÀ

Ultima attività di Jonathan Coleman

Jonathan Coleman ha commentato,

Commento nella community 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.

Visualizza commento · Data ultimo post: 13 nov 2018 · Jonathan Coleman

0

Follower

0

Voti

0

Commenti


Jonathan Coleman ha commentato,

Commento nella community 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

Visualizza commento · Data ultimo post: 30 ago 2018 · Jonathan Coleman

0

Follower

0

Voti

0

Commenti