NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name It's not a numbers game - Furaffinity // @namespace http://www.furaffinity.net/user/Maloo // @description Stahp. (Works on both original and new layouts) // @include http://www.furaffinity.net/user/* // @include https://www.furaffinity.net/user/* // @grant none // @version 2.0 // ==/UserScript== if (document.querySelector(".stats-flex-container") !== null) { var x = document.querySelector("div.stats-flex-item:nth-child(1)"); //x = x[0]; //console.log(x[0].toString()); x.parentNode.removeChild(x); x = document.querySelector("div.stats-flex-item:nth-child(1)"); var i = 4 + x.innerHTML.search("<br>"); x.innerHTML = x.innerHTML.substring(i); i = 4 + x.innerHTML.search("<br>"); x.innerHTML = x.innerHTML.substring(i); var x = document.querySelector(".stats-flex-item > a:nth-child(2)"); x.innerHTML = "(List)"; var x = document.querySelector(".stats-flex-item > a:nth-child(5)"); x.innerHTML = "(List)"; x = document.querySelector(".stats-flex-container"); x.innerHTML = "It's not a numbers game. <3<br>" + x.innerHTML; } else { var e = document.getElementsByClassName("bdot"); var d = e[0].parentNode.nextSibling.nextSibling.firstChild.nextSibling; d.innerHTML = "It's not a numbers game. <3"; var f = document.getElementsByClassName("cat"); f[7].firstChild.innerHTML = "Full List"; f[9].firstChild.innerHTML = "Full List"; }