steamgifts.com sticky header

Makes the nav bar at the top of steamgifts.com "sticky" - i.e., always at the top of the screen even if you scroll the page down

  1. // ==UserScript==
  2. // @name steamgifts.com sticky header
  3. // @description Makes the nav bar at the top of steamgifts.com "sticky" - i.e., always at the top of the screen even if you scroll the page down
  4. // @namespace Barefoot Monkey
  5. // @include https://www.steamgifts.com/*
  6. // @version 1.1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. // Sticky header
  11. var style = document.createElement('style')
  12. style.textContent = `header {
  13. top: 0;
  14. position: sticky;
  15. z-index: 1;
  16. }
  17. @supports ( not (position: sticky) ) {
  18. header {
  19. position: fixed;
  20. width: 100%;
  21. }
  22. html {
  23. padding-top: 39px;
  24. }
  25. }`
  26. document.head.appendChild(style)

QingJ © 2025

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