We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I often have scenarios where I open all bookmarks under the current tag, or open all bookmarks after searching for results.
It would be helpful if you could add an action to bookmark actions, specifically an option to "open" all bookmarks.
The text was updated successfully, but these errors were encountered:
I currently use js bookmark like this to open them
javascript:(function(){var items=document.querySelectorAll('#bookmark-list-container > ul > li');items.forEach(function(item,index){setTimeout(function(){var link=item.querySelector('div > div.title > a');if(link&&link.href){window.open(link.href,'_blank');}},index*500);})();})();
Sorry, something went wrong.
No branches or pull requests
I often have scenarios where I open all bookmarks under the current tag, or open all bookmarks after searching for results.
It would be helpful if you could add an action to bookmark actions, specifically an option to "open" all bookmarks.
The text was updated successfully, but these errors were encountered: