There are 18 previous versions of this script.
// ==UserScript==
// @name Runescape Ad & NavBar remover
// @namespace http://www.trancenotes.com/
// @description removes the rs nav bar.
// @include *world*.runescape.com/*
// ==/UserScript==
//var currentpage = window.location.href;
//By: JoeSimmons modified by me
//if you want to automaticly integrate joe's function (improved) then uncomment the following.
//function skippy() {
// if(/Skip available in \d+ seconds/.test(document.body.textContent)) {
// unsafeWindow.hideVideoAd();
// clearInterval(due);
// }
//}
//var due = setInterval(skippy, Math.floor(Math.random()*500)+1042);
var nav = document.getElementById("menubox");
if (nav) {
nav.parentNode.removeChild(nav);
}
nav = document.getElementById("tb");
if (nav) {
nav.parentNode.removeChild(nav);
}
