NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Zoosk Auto Expand Profiles // @description Autoexpand user profiles on Zoosk (It clicks the "See Full Profile" button) // @include http*://*zoosk.*/* // @run-at document-start // @license MIT // @author ballerburg9005 // ==/UserScript== setInterval(function() { var i, list = document.getElementsByClassName("js-link"); for (i = 0; i < list.length; ++i) { if(list[i].innerText == "See Full Profile" && list[i].style.display != "none") { list[i].click(); for(var uu = 0; uu < 3000; uu+=200) setTimeout(function() { window.scrollTo(0,0); }, uu); } } }, 200);