test: add react-devtools-demo extension artifacts from testing session
Generated during browser_install_popular_extension testing to verify Chrome extension functionality works correctly. Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
b480bc9328
commit
7d97fc3e3b
8 changed files with 238 additions and 0 deletions
57
react-devtools-demo/popup.html
Normal file
57
react-devtools-demo/popup.html
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
body {
|
||||
width: 300px;
|
||||
padding: 15px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
|
||||
background: linear-gradient(135deg, #61dafb 0%, #20232a 100%);
|
||||
color: white;
|
||||
margin: 0;
|
||||
}
|
||||
.header {
|
||||
text-align: center;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.logo {
|
||||
font-size: 32px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.title {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.status {
|
||||
background: rgba(255,255,255,0.1);
|
||||
padding: 12px;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.info {
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
opacity: 0.8;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<div class="logo">⚛️</div>
|
||||
<div class="title">React DevTools Demo</div>
|
||||
</div>
|
||||
|
||||
<div class="status">
|
||||
<strong>✅ Extension Active</strong>
|
||||
<br><br>
|
||||
React DevTools demo is running in your Playwright MCP session.
|
||||
<br><br>
|
||||
Navigate to a React app to see it in action!
|
||||
</div>
|
||||
|
||||
<div class="info">
|
||||
Powered by Playwright MCP<br>
|
||||
Chrome Extension Support
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue