For synced storage, my extension creates a folder in the user's other
bookmarks folder (set to lower case to allow for Mac) :
chrome.bookmarks.getChildren('0', function(BookmarkTreeNode) {
BookmarkTreeNode.forEach(function(b) {
if (b.title.toLowerCase() == 'other bookmarks')
{
setFolder (
b.id);
//Perform all folder actions on this folder ID
}
}
)
});
Works fine for me on tests on Windows, Mac and Linux.
But I've had reports of the extension not working on Mac/Linux (no
reports for Windows). Is there any reason this wouldn't work?
It could be a completely separate issue, but as I can't recreate this
error my instinct is that its this part of the code failing.
The extension is Papercuts -
https://chrome.google.com/extensions/detail/kjodbaafiacnpklaepiaplhbbiomipmc.