mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-07-10 14:28:43 +02:00
34 lines
1022 B
HTML
34 lines
1022 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<header class="popup-header">
|
|
<img src="../icons/icon48.png" alt="CyberStrikeAI" width="40" height="40">
|
|
<div>
|
|
<h1>CyberStrikeAI</h1>
|
|
<p class="version" id="version"></p>
|
|
</div>
|
|
</header>
|
|
|
|
<div id="conn-status" class="conn-status conn-status--idle">Loading…</div>
|
|
|
|
<p class="hint">Main workspace is in DevTools: press <strong>F12</strong> → <strong>CyberStrikeAI</strong></p>
|
|
|
|
<ul class="tips">
|
|
<li>Connection and Validate are in the DevTools panel</li>
|
|
<li>Captures XHR/Fetch by default</li>
|
|
<li>Test History stores recent sends</li>
|
|
<li><strong>Latest XHR</strong> sends the most recent API request</li>
|
|
</ul>
|
|
|
|
<script src="../lib/constants.js"></script>
|
|
<script src="../lib/auth-session.js"></script>
|
|
<script src="../lib/storage.js"></script>
|
|
<script src="../lib/api.js"></script>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|