您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
makes the performance header sticky
// ==UserScript== // @version 1.0 // @name Sticky Performance // @namespace sticky_performance_header // @description makes the performance header sticky // @include https://learn.galvanize.com // ==/UserScript== var table = document.querySelector('table') var thead = document.querySelector('thead') var filters = document.querySelector('.clear-filters') table.style.display = 'block' table.style.height = '500px' table.style.overflow = 'scroll' thead.style.position = 'absolute' thead.style.left = '30%' filters.style.display = 'none'