-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FoxyTab] Feature Request: Remove All/Selected Tabs from Bookmarks #595
Comments
That is possible, however, searching & deleting bookmarks is a bit slow, especially if there are many bookmarks. |
Would performance penalty be much different from closing bookmarked tabs since it seems it also uses searching? |
Slightly more .... Furthermore, the bookmarks.remove() API only supports single delete which means deleting 10 bookmarks will result in 10 separate asynchronous operations. |
Hello, Especially, since the reverse operation ("add bookmarks for all selected tabs" by drag'n'drop) is already standard part of ff and it happens very easily by accident if you drag your tabs around alot. In addition to
i would also suggest the following options, if possible:
since bookmarks.search() returns the TreeNodes in order of creation (according to the documentation), it should be fairly straightforward to only remove the first or last element of the list (if the list is not empty). And if that order proves to be unreliable, the sorting could still be done based on the "added" or "modified" timestamps of the bookmarks. Regarding the performance concerns: and anyone performing these operations on a hundred tabs or more should expect that the operation might take a few seconds. Also i think that one would very rarely have more than 2 or 3 bookmarks for the same tab/page |
True, however there are some users who have 5000+ open tabs (e.g. #626) See also: Proposal: Remove multiple bookmarks in bookmarks.remove() |
I forgot I opened the issue until I got a mail. Some time ago, I decided to give it a try and wrote this extension: https://addons.mozilla.org/en-US/firefox/addon/remove-tabs-from-bookmarks/ The main caveats with the current API are:
|
Hi,
It would be nice to have an option to remove all or selected open tabs from bookmarks as a complement to closing bookmarked tabs.
The text was updated successfully, but these errors were encountered: