Kill Floating Bars

Stops elements from following you as you scroll down the page

目前为 2014-04-13 提交的版本。查看 最新版本

// ==UserScript==
// @name           Kill Floating Bars
// @namespace      http://userscripts.org/scripts/show/123194
// @description    Stops elements from following you as you scroll down the page
// @include        *
// @version 0.0.1.20140413063705
// ==/UserScript==

var i;
var all = document.getElementsByTagName("*");
for(i = 0; i < all.length; i++) {
	var style = window.getComputedStyle(all[i]);
	var positioning = style.position;
	if ((positioning == 'absolute') || (positioning == 'fixed')) {
		all[i].style.position = 'static';
	}
}