סקירות עבור Quick Tabs Ported
Quick Tabs Ported Kevin Jones מאת
4 דירוגים
- So, the window pop-up was about 1/2" too narrow, so I *had* to show the fav-icons else the first couple letters of the tab title would be hidden. It did sorta fix itself, it shorted the right side, so I could hide the fav-icons, but the 'x' on the right was then mostly hidden. And the length of the pane was too long, so I could drag the scroll bar most of the way down, but I had to scroll with the mouse wheel or use the cursor keys to see the rest. This may all be because I have a double zoom setting applied to my screen. I'll still run this on my new machine (even if these 2 issues persist), provided no conflicts, bc it's functionality to search tabs and bookmarks, only tabs or bookmarks, or history--all from the same text box--could be very handy. I would've liked Window title bar separators, maybe even getting the titles to display from a specified session mgr add-on. Thanks, mate.
- דירוג 4 מתוך 5מאת pwrsurge, לפני 5 חודשיםVery useful addon when you reguarly have lots of tabs opened. Only major issue is poor search peformance as one gets done on every keystroke. This means that a search gets done after entering every single character which is useless.
This can be fixed with the following simple change to popup.js in order to only search when the string is 3 characters or longer.
On line 665 of popup.js:
Change:
if (!this.shouldSearch(query)) {
to:
if (!this.shouldSearch(query) || query.trim().length < 3) {
Hopefully the above fix can be implemented in a future add-on version. A user configuration option could also be added to specify the minimum length instead of having it hardcoded to 3. - דירוג 4 מתוך 5מאת rsuan, לפני 9 חודשים
- דירוג 4 מתוך 5מאת grahamperrin, לפני 6 שנים