我正在尝试使用“chrome.bookmarks.search”搜索文件夹书签但未找到enything。
chrome.bookmarks.search('My folder', function(children) {
children.forEach(function(child) {
console.log(child)
$('#grid').append(child.title);
});
为什么此代码仅搜索书签而不搜索文件夹。
答案 0 :(得分:1)
有一个知道错误\功能请求,用于搜索文件夹名称check details和some discussions
使用chrome.bookmarks.getTree检索整个书签树并过滤缺少网址属性的文件夹。