In response to
"You copy and paste that where? -- nm"
by
Loyola
|
If you're running greasemonkey, into a new user script for hsxtt.com. Updated script here for removing the notice too
|
// ==UserScript==
// @name HSX TT
// @namespace hsxtt
// @description HSX TT
// @include http://www.hsxtt.com/*
// ==/UserScript==
(function() {
var headerLocation = document.evaluate("//div", document, null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
var headerNode = headerLocation.snapshotItem(0);
headerNode.innerHTML = "";
headerNode.removeAttribute("style");
var noticeNode = headerLocation.snapshotItem(4);
noticeNode.innerHTML = "";
noticeNode.removeAttribute("style");
})();
|
Responses:
|