Vor Kurzem aufgerufene Suchen


Keine vor kurzem aufgerufene Suchen

Jonathan Coleman's Avatar

Jonathan Coleman

Beigetreten 16. Apr. 2021

·

Letzte Aktivität 27. Okt. 2021

Folge ich

0

Follower

0

Gesamtaktivitäten

5

Stimmen

2

Abonnement

1

AKTIVITÄTSÜBERSICHT

Neueste Aktivität von Jonathan Coleman

Jonathan Coleman hat einen Kommentar hinterlassen

Community-Kommentar 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.

Kommentar anzeigen · Gepostet 13. Nov. 2018 · Jonathan Coleman

0

Follower

0

Stimmen

0

Kommentare


Jonathan Coleman hat einen Kommentar hinterlassen

Community-Kommentar 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

Kommentar anzeigen · Gepostet 30. Aug. 2018 · Jonathan Coleman

0

Follower

0

Stimmen

0

Kommentare