Path: blob/main/files/en-us/mozilla/add-ons/webextensions/api/bookmarks/update/index.md
6567 views
------{{AddonSidebar()}}
bookmarks.update() updates the title and/or URL of a bookmark, or the name of a bookmark folder.
Warning: If your extension attempts to update a bookmark in the bookmarks tree root node, the call will raise an error with the message: "The bookmark root cannot be modified" and the bookmark won't be updated.
This is an asynchronous function that returns a Promise.
Syntax
Parameters
id: A {{jsxref("string")}} specifying the ID of the bookmark or bookmark folder to update.
changes: An {{jsxref("object")}} specifying the changes to apply, with some combination of the following fields. Any items not specified aren't changed in the referenced bookmark or folder:
title{{optional_inline}}: A {{jsxref("string")}} containing the new title of the bookmark, or the new name of the folder if
idrefers to a folder.
url{{optional_inline}}: A {{jsxref("string")}} providing a new URL for the bookmark.
Return value
A Promise that will be fulfilled with a single bookmarks.BookmarkTreeNode object, representing the updated bookmark. If the bookmark item corresponding to the id parameter can't be found, the promise is rejected.
Examples
This example renames all folders named "MDN" to "Mozilla Developer Network (MDN)".
{{WebExtExamples}}
Browser compatibility
{{Compat}}
Note: This API is based on Chromium's
chrome.bookmarksAPI. This documentation is derived frombookmarks.jsonin the Chromium code.