chromeextension/popup.html
Your Name 2a95491e33 up
2024-05-27 19:37:06 +02:00

20 lines
489 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Popup</title>
<style>
/* Add your CSS styles here */
</style>
</head>
<body style="width: 300px;">
<p>Last Call URL Date: <span id="lastCallDate"></span></p>
<p>Result: <span id="result"></span></p>
<br />
<button id="callURLBtn">Call URL</button>
<script src="./popup.js"></script>
</body>
</html>