Skip to content

Instantly share code, notes, and snippets.

View smaharj1's full-sized avatar
🏠
Working from home

Sujil Maharjan smaharj1

🏠
Working from home
View GitHub Profile
@smaharj1
smaharj1 / chasebank.js
Last active November 19, 2023 07:35
Chase bank auto apply offers
/**
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.
*/
@smaharj1
smaharj1 / amex.js
Created August 20, 2021 15:23
Add all the Amex Offers to the card...
/**
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.
*/
@smaharj1
smaharj1 / shoprite-hustle.js
Last active April 30, 2020 17:45
Shoprite Script that will keep flipping between pickup and delivery until you get the timeslot during covid
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');