NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Skip the stupid PayPal loan splash screen // @namespace http://tampermonkey.net/ // @version 0.0.1 // @description Skip the stupid PayPal loan splash screen // @author HankLoydRight // @match https://www.paypal.com/clickthru/* // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; var anchorElements = document.querySelectorAll('a'); anchorElements.forEach(function (element) { if (element.innerHTML == "My PayPal") element.click(); }); })();