This commit is contained in:
Kaby_Kun 2025-02-20 00:08:40 +01:00
parent caba227e85
commit 2600300d36
3 changed files with 98 additions and 0 deletions

19
Files/popup.html Normal file
View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>Mailcow Temp Mail</title>
<style>
body { width: 250px; padding: 10px; font-family: Arial, sans-serif; }
button { width: 100%; padding: 5px; margin-top: 5px; }
input { width: 100%; padding: 5px; margin-bottom: 5px; text-align: center; }
</style>
</head>
<body>
<h3>Mailcow Temp Mail</h3>
<input type="text" id="email" readonly placeholder="No email found">
<button id="fetch">Get My Temp Email</button>
<button id="generate">Generate New Email</button>
<button id="copy">Copy to Clipboard</button>
<script src="popup.js"></script>
</body>
</html>