How to Add New Bookmark Folder in Chrome

chrome.bookmarks

  • Description

    Use the chrome.bookmarks API to create, organize, and otherwise manipulate bookmarks. Also see Override Pages, which you can use to create a custom Bookmark Manager page.

  • Permissions

    bookmarks

Clicking the star adds a bookmark

Manifest

You must declare the "bookmarks" permission in the extension manifest to use the bookmarks API. For example:

                              {                
"name" : "My extension" ,
...
"permissions" : [
"bookmarks"
] ,
...
}

Objects and properties

Bookmarks are organized in a tree, where each node in the tree is either a bookmark or a folder (sometimes called a group). Each node in the tree is represented by a bookmarks.BookmarkTreeNode object.

BookmarkTreeNode properties are used throughout the chrome.bookmarks API. For example, when you call bookmarks.create, you pass in the new node's parent (parentId), and, optionally, the node's index, title, and url properties. See bookmarks.BookmarkTreeNode for information about the properties a node can have.

Note: You cannot use this API to add or remove entries in the root folder. You also cannot rename, move, or remove the special "Bookmarks Bar" and "Other Bookmarks" folders.

Examples

The following code creates a folder with the title "Extension bookmarks". The first argument to create() specifies properties for the new folder. The second argument defines a function to be executed after the folder is created.

              chrome.bookmarks.                create                (                
{ 'parentId' : bookmarkBar.id, 'title' : 'Extension bookmarks' } ,
function ( newFolder ) {
console. log ( "added folder: " + newFolder.title) ;
} ,
) ;

The next snippet creates a bookmark pointing to the developer documentation for extensions. Since nothing bad will happen if creating the bookmark fails, this code doesn't bother to define a callback function.

              chrome.bookmarks.                create                (                {                
'parentId' : extensionsFolderId,
'title' : 'Extensions doc' ,
'url' : 'https://developer.chrome.com/docs/extensions' ,
} ) ;

For an example of using this API, see the basic bookmarks sample. For other examples and for help in viewing the source code, see Samples.

Summary

  • Types

  • Properties

  • Methods

  • Events

Types

BookmarkTreeNode

A node (either a bookmark or a folder) in the bookmark tree. Child nodes are ordered within their parent folder.

Properties

  • children

    BookmarkTreeNode[]optional

    An ordered list of children of this node.

  • When this node was created, in milliseconds since the epoch (new Date(dateAdded)).

  • dateGroupModified

    numberoptional

    When the contents of this folder last changed, in milliseconds since the epoch.

  • The unique identifier for the node. IDs are unique within the current profile, and they remain valid even after the browser is restarted.

  • The 0-based position of this node within its parent folder.

  • The id of the parent folder. Omitted for the root node.

  • The text displayed for the node.

  • unmodifiable

    "managed"optional

    Indicates the reason why this node is unmodifiable. The managed value indicates that this node was configured by the system administrator or by the custodian of a supervised user. Omitted if the node can be modified by the user and the extension (default).

  • The URL navigated to when a user clicks the bookmark. Omitted for folders.

BookmarkTreeNodeUnmodifiable

Indicates the reason why this node is unmodifiable. The managed value indicates that this node was configured by the system administrator. Omitted if the node can be modified by the user and the extension (default).

CreateDetails

Object passed to the create() function.

Properties

  • Defaults to the Other Bookmarks folder.

Properties

MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE

Bookmark write operations are no longer limited by Chrome.

MAX_WRITE_OPERATIONS_PER_HOUR

Bookmark write operations are no longer limited by Chrome.

Methods

create

chrome.bookmarks.create(
  bookmark: CreateDetails,
  callback?: function,
)

Creates a bookmark or folder under the specified parentId. If url is NULL or missing, it will be a folder.

Parameters

  • callback

    functionoptional

    The callback parameter looks like: (result: BookmarkTreeNode) => void

Returns

  • Promise<BookmarkTreeNode>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

get

chrome.bookmarks.get(
  idOrIdList: string | [string, ...string[]],
  callback?: function,
)

Retrieves the specified BookmarkTreeNode(s).

Parameters

  • idOrIdList

    string | [string, ...string[]]

    A single string-valued id, or an array of string-valued ids

  • callback

    functionoptional

    The callback parameter looks like: (results: BookmarkTreeNode[]) => void

Returns

  • Promise<BookmarkTreeNode[]>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

getChildren

chrome.bookmarks.getChildren(
  id: string,
  callback?: function,
)

Retrieves the children of the specified BookmarkTreeNode id.

Parameters

  • callback

    functionoptional

    The callback parameter looks like: (results: BookmarkTreeNode[]) => void

Returns

  • Promise<BookmarkTreeNode[]>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

getRecent

chrome.bookmarks.getRecent(
  numberOfItems: number,
  callback?: function,
)

Retrieves the recently added bookmarks.

Parameters

  • The maximum number of items to return.

  • callback

    functionoptional

    The callback parameter looks like: (results: BookmarkTreeNode[]) => void

Returns

  • Promise<BookmarkTreeNode[]>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

getSubTree

chrome.bookmarks.getSubTree(
  id: string,
  callback?: function,
)

Retrieves part of the Bookmarks hierarchy, starting at the specified node.

Parameters

  • The ID of the root of the subtree to retrieve.

  • callback

    functionoptional

    The callback parameter looks like: (results: BookmarkTreeNode[]) => void

Returns

  • Promise<BookmarkTreeNode[]>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

getTree

chrome.bookmarks.getTree(
  callback?: function,
)

Retrieves the entire Bookmarks hierarchy.

Parameters

  • callback

    functionoptional

    The callback parameter looks like: (results: BookmarkTreeNode[]) => void

Returns

  • Promise<BookmarkTreeNode[]>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

move

chrome.bookmarks.move(
  id: string,
  destination: object,
  callback?: function,
)

Moves the specified BookmarkTreeNode to the provided location.

Parameters

  • callback

    functionoptional

    The callback parameter looks like: (result: BookmarkTreeNode) => void

Returns

  • Promise<BookmarkTreeNode>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

remove

chrome.bookmarks.remove(
  id: string,
  callback?: function,
)

Removes a bookmark or an empty bookmark folder.

Parameters

  • callback

    functionoptional

    The callback parameter looks like: () => void

Returns

  • This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

removeTree

chrome.bookmarks.removeTree(
  id: string,
  callback?: function,
)

Recursively removes a bookmark folder.

Parameters

  • callback

    functionoptional

    The callback parameter looks like: () => void

Returns

  • This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

chrome.bookmarks.search(
  query: string | object,
  callback?: function,
)

Searches for BookmarkTreeNodes matching the given query. Queries specified with an object produce BookmarkTreeNodes matching all specified properties.

Parameters

  • Either a string of words and quoted phrases that are matched against bookmark URLs and titles, or an object. If an object, the properties query, url, and title may be specified and bookmarks matching all specified properties will be produced.

    • A string of words and quoted phrases that are matched against bookmark URLs and titles.

    • The title of the bookmark; matches verbatim.

    • The URL of the bookmark; matches verbatim. Note that folders have no URL.

  • callback

    functionoptional

    The callback parameter looks like: (results: BookmarkTreeNode[]) => void

Returns

  • Promise<BookmarkTreeNode[]>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

update

chrome.bookmarks.update(
  id: string,
  changes: object,
  callback?: function,
)

Updates the properties of a bookmark or folder. Specify only the properties that you want to change; unspecified properties will be left unchanged. Note: Currently, only 'title' and 'url' are supported.

Parameters

  • callback

    functionoptional

    The callback parameter looks like: (result: BookmarkTreeNode) => void

Returns

  • Promise<BookmarkTreeNode>

    This only returns a Promise when the callback parameter is not specified, and with MV3+. The type inside the Promise is the same as the 1st argument to callback.

Events

onChanged

chrome.bookmarks.onChanged.addListener(
  callback: function,
)

Fired when a bookmark or folder changes. Note: Currently, only title and url changes trigger this.

Parameters

  • The callback parameter looks like: (id: string, changeInfo: object) => void

onChildrenReordered

chrome.bookmarks.onChildrenReordered.addListener(
  callback: function,
)

Fired when the children of a folder have changed their order due to the order being sorted in the UI. This is not called as a result of a move().

Parameters

  • The callback parameter looks like: (id: string, reorderInfo: object) => void

onCreated

chrome.bookmarks.onCreated.addListener(
  callback: function,
)

Fired when a bookmark or folder is created.

Parameters

  • The callback parameter looks like: (id: string, bookmark: BookmarkTreeNode) => void

onImportBegan

chrome.bookmarks.onImportBegan.addListener(
  callback: function,
)

Fired when a bookmark import session is begun. Expensive observers should ignore onCreated updates until onImportEnded is fired. Observers should still handle other notifications immediately.

Parameters

  • The callback parameter looks like: () => void

onImportEnded

chrome.bookmarks.onImportEnded.addListener(
  callback: function,
)

Fired when a bookmark import session is ended.

Parameters

  • The callback parameter looks like: () => void

onMoved

chrome.bookmarks.onMoved.addListener(
  callback: function,
)

Fired when a bookmark or folder is moved to a different parent folder.

Parameters

  • The callback parameter looks like: (id: string, moveInfo: object) => void

onRemoved

chrome.bookmarks.onRemoved.addListener(
  callback: function,
)

Fired when a bookmark or folder is removed. When a folder is removed recursively, a single notification is fired for the folder, and none for its contents.

Parameters

  • The callback parameter looks like: (id: string, removeInfo: object) => void

Table of contents

  • Manifest
  • Objects and properties
  • Examples
  • Types
    • BookmarkTreeNode
    • BookmarkTreeNodeUnmodifiable
    • CreateDetails
  • Properties
    • MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE
    • MAX_WRITE_OPERATIONS_PER_HOUR
  • Methods
    • create
    • get
    • getChildren
    • getRecent
    • getSubTree
    • getTree
    • move
    • remove
    • removeTree
    • search
    • update
  • Events
    • onChanged
    • onChildrenReordered
    • onCreated
    • onImportBegan
    • onImportEnded
    • onMoved
    • onRemoved

How to Add New Bookmark Folder in Chrome

Source: https://developer.chrome.com/docs/extensions/reference/bookmarks/

0 Response to "How to Add New Bookmark Folder in Chrome"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel