User Pass
Home Sign Up Contact Log In
Forum > Goal Line Blitz > Greasemonkey Scripts > would it be possible to make a script that keeps toolbar for loading?
fogie55
offline
Link
 
i'm not a programmer but I found you can delete the node that says "<link href="http://wg.goallineblitz.com/css/wg_bar.css?5" type="text/css" rel="stylesheet"></link>" but it only works until you load a new page.
 
Pena_FIN
offline
Link
 
Block the element with adblock plus.
 
pabst
offline
Link
 
// ==UserScript==
// @name wgbar
// @namespace wg
// @include http://goallineblitz.com/*
// @grant none
// ==/UserScript==

var div = document.getElementById("wg_header");
if (div != null) {
div.parentNode.removeChild(div);
}
 


You are not logged in. Please log in if you want to post a reply.