NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Speedytravel - Remove Current Styles
// @description Development tool/demo only
// @version 1
// @copyright 2020, rebdev (https://openuserjs.org/users/rebdev)
// @license MIT
// @grant none
// @include https://www.speedytravel.com.au/*
// ==/UserScript==
// anonymous function wrapper so we don't interfere with other scripting on the page
(function()
{
// remove all linked styles
for( i = 0; (l = document.getElementsByTagName("link")[i]); i++ ) {
if( l.getAttribute("rel").indexOf("style") >= 0 ) l.disabled = true;
}
})();