Last active
April 26, 2024 14:17
-
-
Save neil1023/89c7c13042a672e8222ac3846d377d1f to your computer and use it in GitHub Desktop.
BJs Coupon Clipper
This file contains 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
// This script can be run in the browser console | |
// Just navigate to https://www.bjs.com/myCoupons and execute the script | |
// This script will clip all the coupons on the current page | |
// | |
// Created on 10/13/22 | |
let buttons = document.getElementsByClassName('mt-2 btn gray-btn'); | |
for (let i = 0; i < buttons.length; i++) { | |
buttons[i].click(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment