Skip to content

Instantly share code, notes, and snippets.

@mclarke47
Created July 10, 2024 15:12
Show Gist options
  • Save mclarke47/58d90f2dcd5974dae6a359114cd16615 to your computer and use it in GitHub Desktop.
Save mclarke47/58d90f2dcd5974dae6a359114cd16615 to your computer and use it in GitHub Desktop.
Add all CVS coupons to your rewards card without clicking the buttons
document.querySelectorAll(".coupon-action.button-blue").forEach((f, i) => {
setTimeout(() => {
f.click()
}, 1500 * i)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment