browser-agent-mcp
Version:
Chrome extension and MCP server for comprehensive browser automation with AI agents
57 lines (53 loc) • 1.32 kB
HTML
<html>
<head>
<meta charset="utf-8" />
<style>
body {
width: 300px;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
sans-serif;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.status {
padding: 10px;
border-radius: 4px;
margin-bottom: 10px;
text-align: center;
}
.status.connected {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.status.disconnected {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.info {
font-size: 12px;
color: #666;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="header">
<h3>Browser Agent MCP</h3>
</div>
<div id="status" class="status disconnected">Checking connection...</div>
<div class="info">
<p>
This extension enables AI agents to interact with your browser through
the Model Context Protocol (MCP).
</p>
<p><strong>Version:</strong> 0.1.0</p>
</div>
<script src="popup.js"></script>
</body>
</html>