Created
July 10, 2024 15:12
-
-
Save mclarke47/58d90f2dcd5974dae6a359114cd16615 to your computer and use it in GitHub Desktop.
Add all CVS coupons to your rewards card without clicking the buttons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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