- Rebased onto upstream/main (v0.24.0, full Rust native) - Renamed package to agent-browser-stealth, version 0.24.0-fork.1 - Preserved fork-specific: abs alias, extensions/tab-group-cdp, .husky hooks - Removed upstream-only: docs/, packages/dashboard, examples/, benchmarks/ - Simplified pnpm workspace to root-only - Added [[bin]] section to keep binary name as "agent-browser" Track 1 of native-stealth migration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
934 B
HTML
29 lines
934 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>agent-browser-stealth panel</title>
|
|
<link rel="stylesheet" href="sidepanel.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>agent-browser-stealth</h1>
|
|
<div class="actions">
|
|
<button id="refresh-btn" type="button">Refresh</button>
|
|
<button id="cleanup-btn" type="button">Clean Empty Groups</button>
|
|
</div>
|
|
<div id="status-line" class="status-line"></div>
|
|
</header>
|
|
|
|
<section id="control" class="card"></section>
|
|
<section id="summary" class="card"></section>
|
|
<section id="automation" class="card"></section>
|
|
<section id="developer" class="card"></section>
|
|
<section id="sessions" class="stack"></section>
|
|
<section id="downloads" class="card"></section>
|
|
|
|
<script src="sidepanel.js"></script>
|
|
</body>
|
|
</html>
|