Skip to content

Commit

Permalink
Added alerts for link and pass save
Browse files Browse the repository at this point in the history
  • Loading branch information
synthicyde committed Nov 10, 2022
1 parent d79324c commit a5640b3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ Installation is really easy.
I am working on adding greater customizability and some Javascript functionality to automate platform tasks.

## Version notes
### 0.3.1.0
- Added alerts for when the link and password is saved

### 0.3.0.0
- Cleaned up CSS for options and popup with variables
- Rebuilt backend so common links are pulled through the chrome storage api
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "Ike's Nest",
"description": "iCIMS Helper Extension",
"version": "0.3.0.0",
"version_name":"0.3.0.0 - Beta",
"version": "0.3.1.0",
"version_name":"0.3.1.0 - Beta",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
Expand Down
2 changes: 1 addition & 1 deletion options.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h2>Input the current config portal password</h2>
<p>Extension created by Devon Sherman.</p>
</div>
<div class="footerdiv" id="footerlink">
<p>Current version number: 0.2.1.2a. Maintained on <a href="https://github.com/synthicyde/ikes-nest" target="_blank">GitHub.</a></p>
<p>Current version number: 0.3.1.0. Maintained on <a href="https://github.com/synthicyde/ikes-nest" target="_blank">GitHub.</a></p>
</div>
</footer>
<script src="options.js"></script>
Expand Down
2 changes: 2 additions & 0 deletions options.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ bookingsLink.addEventListener("submit", (submission) => {
let moveLink = {link: saveLink};
console.log(moveLink);
chrome.storage.sync.set({"storedUserBookings": moveLink});
alert("Bookings link saved.")
});

portalPassSave.addEventListener("submit", (submission) => {
Expand All @@ -15,6 +16,7 @@ portalPassSave.addEventListener("submit", (submission) => {
let movePass = {password: savePass};
console.log(movePass);
chrome.storage.sync.set({"storedUserPortalPass": movePass});
alert("Portal pasword saved.")
});

window.onload = () => {
Expand Down

0 comments on commit a5640b3

Please sign in to comment.