Roo-Code/webview-ui/webPreview.html
Roo Code ab7ccf1852 feat: add integrated web preview with element selection (fixes #5971)
- Add WebPreviewProvider to manage preview panel in sidebar
- Create React-based UI with URL navigation and viewport controls
- Implement element selection with context extraction (HTML, CSS, XPath)
- Add web_preview tool for AI integration
- Register commands and update package.json
- Update type definitions and tool configurations

This implementation provides:
- Web preview panel in VSCode sidebar
- Click-to-select elements with visual highlighting
- Element context extraction for AI assistance
- Responsive viewport controls
- Integration with Roo Code AI through web_preview tool
2025-07-20 04:07:08 +00:00

12 lines
No EOL
289 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Preview</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/webPreview.tsx"></script>
</body>
</html>