Creates a bookmark or folder as a child of the
BookmarkTreeNode
采用指定
parentId
. To create a folder, omit or leave empty the
CreateDetails.url
参数。
警告: If your extension tries to create a new bookmark in the bookmark tree's root node, it raises an error: " The bookmark root cannot be modified " and the bookmark won't be created.
This is an asynchronous function that returns a
Promise
.
var createBookmark = browser.bookmarks.create(
bookmark
// CreateDetails object
)
bookmark
A
bookmarks.CreateDetails
对象。
A
Promise
that will be fulfilled with a
BookmarkTreeNode
that describes the new bookmark node.
This example creates a bookmark for this page, placing it in the default folder ("Other Bookmarks" in Firefox and Chrome).
function onCreated(node) {
console.log(node);
}
var createBookmark = browser.bookmarks.create({
title: "bookmarks.create() on MDN",
url: "https://developer.mozilla.org/Add-ons/WebExtensions/API/bookmarks/create"
});
createBookmark.then(onCreated);
BCD tables only load in the browser
注意:
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.
最后修改: , 由 MDN 贡献者