Recherches récentes


Pas de recherche récente

Jonathan Coleman's Avatar

Jonathan Coleman

Adhésion le 16 avr. 2021

·

Dernière activité le 27 oct. 2021

Suivis

0

Abonnés

0

Activité totale

5

Votes

2

Abonnement

1

APERÇU DES ACTIVITÉS

Dernière activité effectuée par Jonathan Coleman

Jonathan Coleman a ajouté un commentaire,

Commentaire de la communauté 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.

Afficher le commentaire · Publication le 13 nov. 2018 · Jonathan Coleman

0

Abonnés

0

Votes

0

Commentaire


Jonathan Coleman a ajouté un commentaire,

Commentaire de la communauté 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

Afficher le commentaire · Publication le 30 août 2018 · Jonathan Coleman

0

Abonnés

0

Votes

0

Commentaire