23 lines
565 B
JSON
23 lines
565 B
JSON
{
|
|
"name": "chrome_bookmark_delete",
|
|
"description": "Delete a bookmark from Chrome",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"bookmarkId": {
|
|
"type": "string",
|
|
"description": "ID of the bookmark to delete. Either bookmarkId or url must be provided."
|
|
},
|
|
"url": {
|
|
"type": "string",
|
|
"description": "URL of the bookmark to delete. Used if bookmarkId is not provided."
|
|
},
|
|
"title": {
|
|
"type": "string",
|
|
"description": "Title of the bookmark to help with matching when deleting by URL."
|
|
}
|
|
},
|
|
"required": []
|
|
}
|
|
}
|