Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用“chrome.bookmarks.search”搜索文件夹书签,但未找到任何内容。
chrome.bookmarks.search('My folder', function(children) { children.forEach(function(child) { console.log(child) $('#grid').append(child.title); });
为什么此代码仅搜索书签而不搜索文件夹。
有一个已知的错误\功能请求,用于搜索文件夹名称、检查详细信息和一些讨论
使用chrome.bookmarks.getTree检索整个书签树并过滤缺少 URL 属性的文件夹。