(function() { if ( window.location.host.indexOf('chase.com') !== -1 ) { jQuery('.details-label').click(); alert('Calculating rewards, please wait 5 seconds for all transactions to load...') setTimeout(function() { var total = 0; jQuery('[data-attr="CREDIT_ACCOUNT_ACTIVITY_ALL_TRANSACTIONS.transactions.totalTransactionRewardsEarned"]').each(function() { var amount = jQuery(this).text(); amount = amount.replace(',', ''); total += Number( amount ); }); var formattedTotal = '$' + (total / 100).toFixed(2); alert( 'Your rewards total for this billing cycle is ' + formattedTotal ); }, 5000); } })();