您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
for stick header of table when scrolling
Script for stick header of table when scrolling make fixed header for one site Lamptest.ru (texts in russian language), contains results of testing of hundreds electrical lamps (LED and other types).
Example for test of this script: http://lamptest.ru/results/?base_5=on&type_1=on.
For Chrome you may install from unpacked directory with 2 files: getMoreLamps.user.js (this userscript) and manifest.json with this code:
{
"content_scripts": [ {
"exclude_matches": [ ],
"include_globs": [
"http://lamptest.ru/*", "https://lamptest.ru/*"],
"js": [ "getMoreLamps.user.js" ],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_idle"
} ],
"converted_from_user_script": true,
"description": "Lamptest pinned header of table",
"name": "stickedHeader",
"version": "1.2018.12.6",
"manifest_version": 2
}