This file contains 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
const ALLOW_AUTO_PURCHASE = false | |
const CHECKOUT_URL = 'https://www.amazon.com/gp/buy/shipoptionselect/handlers/display.html?hasWorkingJavascript=1' | |
const { pathname } = location | |
const isShipOptionPage = /buy\/shipoptionselect/.test(pathname) | |
const isPaySelectPage = /buy\/payselect/.test(pathname) | |
const isPurchasePage = /buy\/spc/.test(pathname) | |
const isThankYouPage = /buy\/thankyou/.test(pathname) | |
let attemptNum = 1 |