Movatterモバイル変換


[0]ホーム

URL:


  1. Mozilla
  2. Add-ons
  3. Browser extensions
  4. JavaScript APIs
  5. bookmarks
  6. bookmarks.create()

bookmarks.create()

Creates a bookmark or folder as a child of theBookmarkTreeNode with the specifiedparentId. To create a folder, omit or leave empty theCreateDetails#url parameter.

Warning: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 aPromise.

Syntax

js
let createBookmark = browser.bookmarks.create(  bookmark                  // CreateDetails object)

Parameters

bookmark

Abookmarks.CreateDetails object.

Return value

APromise that will be fulfilled with aBookmarkTreeNode that describes the new bookmark node.

Note:If you create multiple bookmarks, because this API is asynchronous, the create calls may get processed in any order. Consequently, the value of each bookmark's index returned inBookmarkTreeNode may change or be unknown until all the create calls are completed. If the index associated with a bookmark matters to your extension, then – when creating multiple bookmarks – the extension should wait for eachbookmarks.create call to complete before creating the next bookmark. Waiting ensures that the index associated with each bookmark is not affected by a create call executing concurrently while the original call is in progress.

Examples

This example creates a bookmark for this page, placing it in the default folder ("Other Bookmarks" in Firefox and Chrome).

js
function onCreated(node) {  console.log(node);}let createBookmark = browser.bookmarks.create({  title: "bookmarks.create() on MDN",  url: "https://developer.mozilla.org/Add-ons/WebExtensions/API/bookmarks/create",});createBookmark.then(onCreated);

Example extensions

Browser compatibility

Note:This API is based on Chromium'schrome.bookmarks API. This documentation is derived frombookmarks.json in the Chromium code.

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp