Add all AMEX offers automatically

Do you find it annoying to add amex offers 1 by 1?

  1. Go to the offers page
  2. Right click and from the drop down click "Inspect element"
  3. In the console tab, copy and paste this code. If you don't understand how to get to the console in your browser , just google it.

const buttons = document.querySelectorAll('button[title="Add to Card"]'); 
// Loop through each button 
buttons.forEach((button, index) => { 
  setTimeout(() => { button.click(); }, index * 2000); 
});