27 lines
655 B
JSON
27 lines
655 B
JSON
{
|
|
"name": "chrome_bookmark_update",
|
|
"description": "Update a bookmark or folder: change its title and/or URL",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"bookmarkId": {
|
|
"type": "string",
|
|
"description": "ID of the bookmark/folder to update. Either bookmarkId or url must be provided."
|
|
},
|
|
"url": {
|
|
"type": "string",
|
|
"description": "Current URL of the bookmark, used to locate it when bookmarkId is omitted."
|
|
},
|
|
"title": {
|
|
"type": "string",
|
|
"description": "New title."
|
|
},
|
|
"newUrl": {
|
|
"type": "string",
|
|
"description": "New URL (bookmarks only, not folders)."
|
|
}
|
|
},
|
|
"required": []
|
|
}
|
|
}
|