diff --git a/README.md b/README.md index 898b255..caac946 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/manifest.json b/manifest.json index 6e5191f..30f900e 100644 --- a/manifest.json +++ b/manifest.json @@ -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" diff --git a/options.html b/options.html index eab1732..87370e0 100644 --- a/options.html +++ b/options.html @@ -29,7 +29,7 @@

Input the current config portal password

Extension created by Devon Sherman.

diff --git a/options.js b/options.js index 48a0e4c..c80fac6 100644 --- a/options.js +++ b/options.js @@ -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) => { @@ -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 = () => {