Skip to content

Instantly share code, notes, and snippets.

@garyhtou
Last active February 19, 2024 00:41
Show Gist options
  • Save garyhtou/d35622fbcb98a5a4d75ef55976910c68 to your computer and use it in GitHub Desktop.
Save garyhtou/d35622fbcb98a5a4d75ef55976910c68 to your computer and use it in GitHub Desktop.
Activate all Credit Cards Offers

Activate all Credit Cards Offers

Run these scripts in the console to auto-activate all available offers

// American Express Offers
// https://global.americanexpress.com/offers/eligible
document.querySelectorAll("[data-locator-id='merchantOffer'] button.offer-cta[title='Add to Card']").forEach(e => e.click());
// Chase Offers
// https://secure.chase.com/web/auth/dashboard#/dashboard/merchantOffers/offer-hub
document.querySelectorAll("mds-icon[type='ico_add_circle']").forEach(e => e.click());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment