您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
2/8/2022, 6:40:34 PM
// ==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);