최근 검색


최근 검색 없음

Jonathan Coleman's Avatar

Jonathan Coleman

가입한 날짜: 2021년 4월 16일

·

마지막 활동: 2021년 10월 27일

팔로잉

0

팔로워

0

총 활동 수

5

투표 수

2

가입 플랜

1

활동 개요

님의 최근 활동 Jonathan Coleman

Jonathan Coleman님이 에 댓글을 입력함

커뮤니티 댓글 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.

댓글 보기 · 2018년 11월 13일에 게시됨 · Jonathan Coleman

0

팔로워

0

투표 수

0

댓글


Jonathan Coleman님이 에 댓글을 입력함

커뮤니티 댓글 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

댓글 보기 · 2018년 8월 30일에 게시됨 · Jonathan Coleman

0

팔로워

0

투표 수

0

댓글