Greasy Fork 支持简体中文。

Kill Floating Bars

Stops elements from following you as you scroll down the page

目前為 2014-04-13 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Kill Floating Bars
  3. // @namespace http://userscripts.org/scripts/show/123194
  4. // @description Stops elements from following you as you scroll down the page
  5. // @include *
  6. // @version 0.0.1.20140413063705
  7. // ==/UserScript==
  8.  
  9. var i;
  10. var all = document.getElementsByTagName("*");
  11. for(i = 0; i < all.length; i++) {
  12. var style = window.getComputedStyle(all[i]);
  13. var positioning = style.position;
  14. if ((positioning == 'absolute') || (positioning == 'fixed')) {
  15. all[i].style.position = 'static';
  16. }
  17. }