Greasy Fork is available in English.

Wikipeida sticky table header

Make the table header always visible

  1. // ==UserScript==
  2. // @name Wikipeida sticky table header
  3. // @description Make the table header always visible
  4. // @icon https://en.wikipedia.org/static/favicon/wikipedia.ico
  5. // @match *://*.wikipedia.org/*
  6. // @match *://*.wikiquote.org/*
  7. // @match *://*.wikisource.org/*
  8. // @match *://*.wikinews.org/*
  9. // @match *://*.wikimedia.org/*
  10. // @match *://*.wikidata.org/*
  11. // @match *://*.wiktionary.org/*
  12. // @match *://*.wikiversity.org/*
  13. // @match *://*.wikibooks.org/*
  14. // @match *://*.wikivoyage.org/*
  15. // @match *://*.mediawiki.org/*
  16. // @version 1.0
  17. // @grant GM_addStyle
  18. // @namespace https://greatest.deepsurf.us/users/113252-garrison-baird
  19. // @run-at document-start
  20. // ==/UserScript==
  21.  
  22. GM_addStyle(`#bodyContent thead {
  23. position: sticky;
  24. top: 0px;
  25. }`)