Skip to content

Instantly share code, notes, and snippets.

@timsayshey
Last active December 16, 2021 20:48
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timsayshey/f307cfc10746a7893c39c0e2422249db to your computer and use it in GitHub Desktop.
Save timsayshey/f307cfc10746a7893c39c0e2422249db to your computer and use it in GitHub Desktop.
Surprise Uber Delivery Day Bookmarklet - Random Delivery Date Selector

Surprise Me Random Delivery Day Picker 🍕

Tired of your boring life? Want to break up the monotony? Schedule yourself a surprise delivery from Uber Eats! Turn a boring sad day into a surprise pizza party day!

How to

  1. Create a new bookmark in your bookmark toolbar, then edit it and paste the bookmarklet code below into the URL field and click save.
  2. Go to UberEats.com - Then choose your suprise meal and proceed to checkout.
  3. To schedule a random delivery date click the bookmarklet and finish checkout!
  4. Wait for your meal with anticipation for up to 7 days 🎉

Demo

javascript: (function () { document.querySelector("label[for=schedule-option]").click(); var dateSelect = document.querySelector("div[role=dialog] select"); var opts = dateSelect.getElementsByTagName('option'); var i = Math.floor(Math.random() * opts.length); dateSelect.selected = i; dateSelect.style.display = 'none'; dateSelect.closest('div').innerHTML = "Random day selected! Prepare to be surprised! 😁"; })()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment