oleedd

Results 113 comments of oleedd

I think it should check - if there are bookmarks only in one system folder, it is generally useless to display it. What do you think?

I mean that one option (hide a single system folder) is enough. Or even without this option - because no sense in displaying a single system folder. I don't see...

As a variant - to check the browser type at the installing event and add the "hide Trash" setting for Vivaldi, Opera. For Opera, it should be in `childrens[3]`. \+...

https://www.maketecheasier.com/assign-custom-hotkeys-chrome-extensions/

I checked - `chrome.commands` really works and opens the popup but at least two keys should be pressed together (not possible with only one key) and one of them should...

Good. Then you can start to implement this issue. It is quite easy, I think. About arrows - I think it is important that at first no item selected (to...

BTW I really need only the delete key. I can write a solution for that if you want. Moreover, maybe better to make two options - for the delete key...

Cool. It is really very useful if need to delete many retired or unnecessary bookmarks.

See a realization of the "Delete" key: (added before `bm.addEventListener('mousedown', function (event) {`) ```javascript document.addEventListener("keydown", function(e) { if (e.key == "Delete") { chrome.bookmarks.remove(selectedBookmark.dataset.itemId, function () { selectedBookmark.remove(); }); } })...

I can't reproduce any breaking. It deletes a bookmark under the mouse. It doesn't depend on the right click menu and the menu keeps working.