Add fetching date and time for one consulate

This commit is contained in:
2024-04-22 00:19:26 -07:00
parent 3a87f9946c
commit cb9b2bf1e8
6 changed files with 209 additions and 31 deletions

View File

@@ -7,3 +7,7 @@
#saveStatus.show {
opacity: 1;
}
body {
min-width: 350px;
}

View File

@@ -6,12 +6,6 @@
<title>not-a-rescheduler popup</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="popup.css">
<style>
/* Set a minimum width for the body */
body {
min-width: 300px; /* Adjust the value as desired */
}
</style>
</head>
<body>
<div class="container">
@@ -48,7 +42,7 @@
<div class="row">
<div class="col">
<div class="mb-2">
<input type="range" id="frequency" name="frequency" min="1" max="10" step="0.5">
<input type="range" id="frequency" name="frequency" min="1" max="10" step="1">
<label for="frequency">Frequency of checks<br>(every <span id="frequency_info">1</span> minutes)</label>
</div>
</div>

View File

@@ -52,6 +52,7 @@
});
saveCredsButton.addEventListener("click", async () => {
await save_credentials();
await chrome.storage.local.set({ "__signinAttempts": 0 });
});
showPasswordButton.addEventListener("mousedown", function() {