Hello! This is a Javascript script that can be used to search Walgreens.com for an availability for the first dose appointment. To use the script as a Browser bookmark, follow these steps:
- Create a new bookmark in the bookmarks bar of your browser
- The bookmark title can be whatever, like “Search Walgreens”
- The URL has to be this (copy and paste the content below starting at "javascript:" ):
javascript: (function () { var timeout; function playLoudBeep() { var audio = new Audio( "https://media.geeksforgeeks.org/wp-content/uploads/20190531135120/beep.mp3" ); audio.play(); } function clickSearchButton() { var content = document.body.textContent || document.body.innerText; var isInitialSearchByZip = content.indexOf( "Let's check COVID-19 vaccine availability in your area." ) !== -1; var button; if (isInitialSearchByZip) { button = document .getElementsByClassName("LocationSearch_container")[0] .getElementsByClassName("btn")[0]; } else { button = document.getElementsByClassName("icon__search")[1];