babyman / quick-tabs-chrome-extension

A quick tab list and switch plugin inspired by the intelliJ IDEA java IDE
BSD 3-Clause "New" or "Revised" License
985 stars 171 forks source link

Feature request: Divide tab list per window #368

Open boardtc opened 2 years ago

boardtc commented 2 years ago

Quick tabs is an excellent extension.

With multiple windows open it would be convenient if the dropdown list of open tabs was divided per window, like the way you do "Recently Closed"

stale[bot] commented 2 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

hababr commented 2 weeks ago

@boardtc You can try to use this css:

.tab.window-0:not(.window-0 ~ .window-0),
.tab.window-1:not(.window-1 ~ .window-1),
.tab.window-2:not(.window-2 ~ .window-2),
.tab.window-3:not(.window-3 ~ .window-3),
.tab.window-4:not(.window-4 ~ .window-4),
.tab.window-5:not(.window-5 ~ .window-5),
.tab.window-6:not(.window-6 ~ .window-6),
.tab.window-7:not(.window-7 ~ .window-7),
.tab.window-8:not(.window-8 ~ .window-8),
.tab.window-9:not(.window-9 ~ .window-9) {
    border-top: 10px solid green;
}