open all links when not installed as extension

This commit is contained in:
zombieFox 2022-05-21 18:28:52 +01:00
parent 0118714603
commit 8f29f844bc
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,12 @@ export const BookmarkOpenAll = function(bookmarkGroupData) {
}
} else {
bookmarkGroupData.list.forEach((link, index) => {
window.open(link.url, '_blank');
});
}
}