Created
May 23, 2022 15:36
-
-
Save brupm/577e56e7e97f6b0fafabede86c7d5d8e to your computer and use it in GitHub Desktop.
Add all Amex credit card offers to you account with this Bookmarklet
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
javascript:btns=[...document.querySelectorAll('.offer-cta')].filter(b => b.textContent === 'Add to Card');c=()=>{ b = btns.pop(); if (!b) return console.log('added all!'); b.click(); setTimeout(c, Math.random() * 1500 + 300) };c(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment