bookmarks.get()
Given the ID of a bookmarks.BookmarkTreeNode
or an array of such IDs, the bookmarks.get()
method retrieves the matching nodes.
This is an asynchronous function that returns a Promise
.
Syntax
var getBookmarks = browser.bookmarks.get(
idOrIdList // string or string array
)
Parameters
idOrIdList
string
Astring
orarray
of strings specifying the IDs of one or moreBookmarkTreeNode
objects to retrieve.
Return value
A Promise
that will be fulfilled with an array of BookmarkTreeNode
, one for each matching node. Separators are not included in the results. If no nodes could be found, the promise will be rejected with an error message.
Examples
This example tries to get the bookmark whose ID is bookmarkAAAA
. If no bookmark with this ID exists, onRejected
is called:
function onFulfilled(bookmarks) {
console.log(bookmarks);
}
function onRejected(error) {
console.log(`An error: ${error}`);
}
var gettingBookmarks = browser.bookmarks.get("bookmarkAAAA");
gettingBookmarks.then(onFulfilled, onRejected);
Browser compatibility
Report problems with this compatibility data on GitHubwebextensions-desktop | webextensions-mobile | |||||
---|---|---|---|---|---|---|
get | ChromeFull supportYes | EdgeFull support79 | FirefoxFull support45 | OperaFull supportYes | SafariNo supportNo | Firefox for AndroidNo supportNo |
Legend
- Full support
- Full support
- No support
- No support
This API is based on Chromium's chrome.bookmarks
API. This documentation is derived from bookmarks.json
in the Chromium code.
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.