27 lines
843 B
HTML
27 lines
843 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Splirate</title>
|
|
<link rel="icon" type="image/png" href="logo-single.png">
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<main class="popup">
|
|
<header class="popup-header">
|
|
<h1><img class="brand-logo" src="logo.png" alt="Splirate"></h1>
|
|
<div class="header-actions">
|
|
<button id="clearBtn" type="button">Clear</button>
|
|
<button id="openHistoryBtn" type="button">History</button>
|
|
</div>
|
|
</header>
|
|
<section>
|
|
<p id="status" class="status">Loading captured URLs...</p>
|
|
<ul id="urlList" class="url-list"></ul>
|
|
</section>
|
|
</main>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|