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
/** | |
APPLY CHASE BANK CC OFFERS | |
This script helps you apply all the Chase bank credit cards automatically. | |
- Login to Chase and go to https://secure03b.chase.com/web/auth/dashboard#/dashboard/offers/index. | |
- Open 'Inspect Element' | |
- Go to Scripts tab and copy this script. | |
- Run this script. | |
*/ |
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
/** | |
You need to already be in https://global.americanexpress.com/offers/eligible route. | |
This script will automatically add all the offers to the card. | |
To Run this script: | |
- Login to Amex and go to the above URL. | |
- Open 'Inspect Element' | |
- Go to Scripts tab and copy this script. | |
- Run this script. | |
*/ |
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
function timeout(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
let isPickup = true | |
let isBreak = false | |
const interval = setInterval(async function() { | |
let pickups = document.getElementsByClassName('fulfillmentHeader__fulfillmentOption--pickup'); | |
let deliveries = document.getElementsByClassName('fulfillmentHeader__fulfillmentOption--delivery'); |