Add message details popup

This commit is contained in:
Jordan Wages 2025-06-27 04:08:04 -05:00
commit 1d7f0d5344
7 changed files with 66 additions and 116 deletions

20
details.html Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AI Details</title>
<link rel="stylesheet" href="options/bulma.css">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title" id="subject"></h1>
<div id="rules"></div>
<div class="buttons mt-4">
<button class="button is-danger" id="clear">Clear Cache</button>
</div>
</div>
</section>
<script src="details.js"></script>
</body>
</html>