This commit is contained in:
2025-10-20 22:18:35 +02:00
parent 752a85ab50
commit 33ac36ddd3
5 changed files with 103 additions and 0 deletions

18
popup.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Custom CSS</title>
<style>
body { font-family: sans-serif; width: 300px; margin: 10px; }
textarea { width: 100%; height: 200px; }
button { margin-top: 8px; width: 100%; }
</style>
</head>
<body>
<h3 id="domain"></h3>
<textarea id="css"></textarea>
<button id="save">Save & Apply</button>
<script src="popup.js"></script>
</body>
</html>