HankLloydright / Skip the stupid PayPal loan splash screen

// ==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();
  });
})();