最近の検索
最近の検索はありません

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
コメント