abu-browser-bridge 0.4.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/tools.js +1 -1
- package/dist/wsServer.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/tools.js
CHANGED
|
@@ -30,7 +30,7 @@ function formatResult(response) {
|
|
|
30
30
|
// --- Register all tools ---
|
|
31
31
|
export function registerTools(server) {
|
|
32
32
|
// 1. browser_get_tabs
|
|
33
|
-
server.tool('get_tabs', 'Get
|
|
33
|
+
server.tool('get_tabs', 'Get all open Chrome browser tabs grouped by window. Returns a summary with the current window/tab info, plus a list of windows each containing their tabs. Use this first to find the target tab ID for other browser actions.', async () => {
|
|
34
34
|
ensureConnected();
|
|
35
35
|
const res = await sendToExtension('get_tabs');
|
|
36
36
|
return { content: [{ type: 'text', text: formatResult(res) }] };
|
package/dist/wsServer.js
CHANGED