/** * Copyright (c) Microsoft Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import React, { useState, useEffect, useCallback } from 'react'; import { createRoot } from 'react-dom/client'; interface TabInfo { id: number; windowId: number; title: string; url: string; favIconUrl?: string; } type StatusType = 'connected' | 'error' | 'connecting'; const ConnectApp: React.FC = () => { const [tabs, setTabs] = useState([]); const [selectedTab, setSelectedTab] = useState(); const [status, setStatus] = useState<{ type: StatusType; message: string } | null>(null); const [showButtons, setShowButtons] = useState(true); const [showTabList, setShowTabList] = useState(true); const [clientInfo, setClientInfo] = useState('unknown'); const [mcpRelayUrl, setMcpRelayUrl] = useState(''); useEffect(() => { const params = new URLSearchParams(window.location.search); const relayUrl = params.get('mcpRelayUrl'); if (!relayUrl) { setShowButtons(false); setStatus({ type: 'error', message: 'Missing mcpRelayUrl parameter in URL.' }); return; } setMcpRelayUrl(relayUrl); try { const client = JSON.parse(params.get('client') || '{}'); const info = `${client.name}/${client.version}`; setClientInfo(info); setStatus({ type: 'connecting', message: `MCP client "${info}" is trying to connect. Do you want to continue?` }); } catch (e) { setStatus({ type: 'error', message: 'Failed to parse client version.' }); return; } void loadTabs(); }, []); const loadTabs = useCallback(async () => { const response = await chrome.runtime.sendMessage({ type: 'getTabs' }); if (response.success) { setTabs(response.tabs); const currentTab = response.tabs.find((tab: TabInfo) => tab.id === response.currentTabId); setSelectedTab(currentTab); } else { setStatus({ type: 'error', message: 'Failed to load tabs: ' + response.error }); } }, []); const handleContinue = useCallback(async () => { setShowButtons(false); setShowTabList(false); if (!selectedTab) { setStatus({ type: 'error', message: 'Tab not selected.' }); return; } try { const response = await chrome.runtime.sendMessage({ type: 'connectToMCPRelay', mcpRelayUrl, tabId: selectedTab.id, windowId: selectedTab.windowId, }); if (response?.success) { setStatus({ type: 'connected', message: `MCP client "${clientInfo}" connected.` }); } else { setStatus({ type: 'error', message: response?.error || `MCP client "${clientInfo}" failed to connect.` }); } } catch (e) { setStatus({ type: 'error', message: `MCP client "${clientInfo}" failed to connect: ${e}` }); } }, [selectedTab, clientInfo, mcpRelayUrl]); const handleReject = useCallback(() => { setShowButtons(false); setShowTabList(false); setStatus({ type: 'error', message: 'Connection rejected. This tab can be closed.' }); }, []); return (

Playwright MCP Extension

{status && } {showButtons && (
)} {showTabList && (

Select page to expose to MCP server:

{tabs.map(tab => ( setSelectedTab(tab)} /> ))}
)}
); }; const StatusBanner: React.FC<{ type: StatusType; message: string }> = ({ type, message }) => { return
{message}
; }; const Button: React.FC<{ variant: 'primary' | 'default'; onClick: () => void; children: React.ReactNode }> = ({ variant, onClick, children }) => { return ( ); }; const TabItem: React.FC<{ tab: TabInfo; isSelected: boolean; onSelect: () => void }> = ({ tab, isSelected, onSelect }) => { const className = `tab-item ${isSelected ? 'selected' : ''}`.trim(); return (
'} alt='' className='tab-favicon' />
{tab.title || 'Untitled'}
{tab.url}
); }; // Initialize the React app const container = document.getElementById('root'); if (container) { const root = createRoot(container); root.render(); }