Working version

This commit is contained in:
Joris Bertomeu
2025-08-26 09:08:04 +02:00
commit ac0dc8286b
63 changed files with 2741 additions and 0 deletions

17
popup/history.html Normal file
View File

@@ -0,0 +1,17 @@
<html>
<head>
<meta charset="UTF-8">
<title>Widevine L3 Guessor - History</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="history">
<a href="./main.html"><button>🔙 Back</button></a>
<button id="saveHistory">💾 Save History</button>
<button id="clearHistory">❌ Clear History</button>
<div id="histDisp"></div>
</div>
</body>
<script src="/libs/jsonview.js"></script>
<script src="./history.js"></script>
</html>