UNPKG

@nicholmikey/chrome-tools

Version:

MCP server for Chrome DevTools Protocol integration - control Chrome tabs, execute JavaScript, capture screenshots, and monitor network traffic

16 lines (15 loc) 399 B
export type { Target as ChromeTab } from 'chrome-remote-interface'; export interface DOMElement { nodeId: number; tagName: string; textContent: string | null; attributes: Record<string, string>; boundingBox: { x: number; y: number; width: number; height: number; } | null; isVisible: boolean; ariaAttributes: Record<string, string>; }