Created
March 18, 2025 15:38
-
-
Save awayken/0bb57c53adf89bf7bb5569fb1b6501d9 to your computer and use it in GitHub Desktop.
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 emailSelector = '[data-selenium-test="contact-chicklet-email"]'; | |
const emailItem = document.querySelector(emailSelector); | |
const email = emailItem.innerText; | |
const stripeUrl = `https://dashboard.stripe.com/search?query=${encodeURIComponent(email)}%20is%3Acustomer`; | |
window.open(stripeUrl, "stripeWindow"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment