スクロールに付いて来る広告を消し去るuserscript

ただし、凝ったメニューも消えるかもしれない。

// ==UserScript==
// @name        NoScrollFix
// @namespace   http://d.hatena.ne.jp/ku__ra__ge/
// @include     *
// @exclude     http://coffeescript.org/*
// @version     1
// ==/UserScript==

(function (callback) {
var script = document.createElement("script");
script.setAttribute("src", "//code.jquery.com/jquery-2.0.0.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")(jQuery.noConflict(true));";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
})(function ($) {

	$("*").each(function() {
	  $(this).data("original-fixed", $(this).css("position"));
	});

	setInterval(function() {
	  $("*").each(function() {
	    if ($(this).data("original-fixed") !== "fixed" && $(this).css("position") === "fixed") {
	      $(this).remove();
	    }
	  });
	}, 5 * 1000);

});