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.20140413063111
  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. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址