26 lines
749 B
JSON
26 lines
749 B
JSON
{
|
|
"name": "chrome_move_tab",
|
|
"description": "Move one or more tabs to a different window and/or position. Use this to relocate a tab into another window or reorder it within a window.",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"tabIds": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "number"
|
|
},
|
|
"description": "IDs of the tabs to move. If omitted, the active tab is moved."
|
|
},
|
|
"windowId": {
|
|
"type": "number",
|
|
"description": "Target window ID to move the tab(s) into. If omitted, tabs stay in their current window (reorder only)."
|
|
},
|
|
"index": {
|
|
"type": "number",
|
|
"description": "Position within the target window (0-based). -1 (default) appends to the end."
|
|
}
|
|
},
|
|
"required": []
|
|
}
|
|
}
|