Recent searches


No recent searches

Jonathan Coleman's Avatar

Jonathan Coleman

Joined Apr 16, 2021

·

Last activity Oct 27, 2021

Following

0

Followers

0

Total activity

5

Votes

2

Subscription

1

ACTIVITY OVERVIEW

Latest activity by Jonathan Coleman

Jonathan Coleman commented,

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

View comment · Posted Nov 13, 2018 · Jonathan Coleman

0

Followers

0

Votes

0

Comments


Jonathan Coleman commented,

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

View comment · Posted Aug 30, 2018 · Jonathan Coleman

0

Followers

0

Votes

0

Comments