Created
March 14, 2024 22:01
-
-
Save thefloodshark/0e5e4d640e307bbdaeb08e8749d6880a to your computer and use it in GitHub Desktop.
PayPal Offer Auto-Accepter
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
// https://www.paypal.com/shopping/ | |
// for use in console, Tampermonkey, etc. | |
// Select all elements with specified class | |
var buttons = document.querySelectorAll('.shopping-view-ujbh5m-icon-button_base-secondary'); | |
// Click each button | |
buttons.forEach(function(button) { | |
button.click(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment