Giter VIP home page Giter VIP logo

Comments (4)

xcv58 avatar xcv58 commented on June 13, 2024

1, Only 9 rows are shown in the list, the horizontal position of 1 row cannot be scrolled down to expand to show more rows;

I can't reproduce the scrolling issue you mentioned.

I suggest using the full mode (Alt+T for Windows/Linux, Command+T for macOS) for a better experience.

2,I can't seem to find the description here sort by what?

It's Group & Sort Tabs. It will group tabs by domain first (move tabs from the same domain into the same window) and sort the tabs by whether it's pinned, domain, url, and title. The implementation is here:

export const tabComparator = (a, b) => {
if (a.pinned ^ b.pinned) {
return b.pinned ? 1 : -1
}
if (a.domain !== b.domain) {
return a.domain.localeCompare(b.domain)
} else if (a.url !== b.url) {
return a.url.localeCompare(b.url)
} else if (a.title !== b.title) {
return a.title.localeCompare(b.title)
}
return a.index - b.index
}

from tab-manager-v2.

xcv58 avatar xcv58 commented on June 13, 2024

For the scrolling issue, could you please try to drag the right-side scrollbar to see whether you can move the view?

from tab-manager-v2.

wxlg1117 avatar wxlg1117 commented on June 13, 2024

1.At first I installed version 1.18.2 in the EDGE store, then I reinstalled version 1.21.3 in the google store, and the problem disappeared.
2.I get it.

found a small problem again, win7 x64 +edge, click on the extension to expand the tabs list, the mouse pulls the right side of the scroll bar when the mouse does not follow the scroll bar click position, see the video (win7 + firefox or win10 +chrome are not this problem).

https://youtube.com/shorts/e4KFlV8Ue8Y

from tab-manager-v2.

xcv58 avatar xcv58 commented on June 13, 2024

Got it, thank you for the update.

I will publish the new version in Edge store.

Will tackle the video issue later.

from tab-manager-v2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.