wikipedia table header float

2/8/2022, 6:40:34 PM

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        wikipedia table header float
// @namespace   Violentmonkey Scripts
// @grant       none
// @version     1.0
// @author      tanhaworen
// @description 2/8/2022, 6:40:34 PM
// @match      https://*.wikipedia.org/wiki/*
// @run-at     document-start
// @license      GNU GPLv2
// ==/UserScript==


document.addEventListener('DOMNodeInserted', function() {
  var listOfThead = document.getElementsByTagName('thead');
  //console.log(listOfThead)
  var num = listOfThead.length;
  //console.log(num)
  var newUI = document.getElementById('vector-sticky-header');
    if (num > 0 ){
    Array.from(listOfThead).forEach(child => {
      child.style.position = "sticky";
      if(newUI){
          child.style.top = "50px";
      } else {
          child.style.top = 0;
      }
    });
  }
}, false);