Chrome Bookmarks API -
问题 I'm attempting to create a simple example that would just alert the first 5 bookmark titles. I took Google's example code and stripped out the search query to see if I could create a basic way to cycle through all Nodes. The following test code fails my alert test and I do not know why. function dumpBookmarks() { var bookmarkTreeNodes = chrome.bookmarks.getTree( function(bookmarkTreeNodes) { (dumpTreeNodes(bookmarkTreeNodes)); }); } function dumpTreeNodes(bookmarkNodes) { var i; for (i = 0; i