Are you looking for a specific bookmark by ID? Something along the lines of:
chrome.bookmarks.get(folderID, function(foo) { if
(chrome.extension.lastError) { console.log("Not found"); } else {
console.log("Found"); }});
may work...
On Wed, Dec 30, 2009 at 1:08 AM, rich <[email protected]> wrote:
> bump!
>
> On Dec 29, 6:54 am, rich <[email protected]> wrote:
>> What is the recommended way to test for existence of a
>> BookmarkTreeNode that doesn't have a URL (i.e. a folder)?
>>
>> chrome.bookmarks.search does not work for non-URL bookmarks (always
>> returns false)
>>
>> The following code is fugly, and doesn't work:
>>
>> try {
>> chrome.bookmarks.get(folderID, function(){console.log('found')});}
>> catch(e) {
>>
>> console.log('not found');
>>
>> }
>>
>> So, what is the recommended way to test for existence of a
>> BookmarkTreeNode that doesn't have a URL (i.e. a folder)?
>>
>> - rich
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Chromium-extensions" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/chromium-extensions?hl=en.
>
>
>
--
You received this message because you are subscribed to the Google Groups
"Chromium-extensions" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/chromium-extensions?hl=en.