css-injector-extension/popup.html
2025-10-20 22:20:56 +02:00

19 lines
401 B
HTML

<!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>