您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
深圳小汽车历史竞价表优雅显示
// ==UserScript== // @name vehicle number bidding // @namespace http://tampermonkey.net/ // @version 0.1 // @description 深圳小汽车历史竞价表优雅显示 // @author hujun // @match https://xqctk.jtys.sz.gov.cn/bszn/20171206/1512524976335_1.html // @icon https://www.google.com/s2/favicons?sz=64&domain=sz.gov.cn // @grant none // @require http://code.jquery.com/jquery-1.11.0.min.js // @license MIT // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); (function() { 'use strict'; $('div.details table tr:eq(1)').css({ position: 'sticky', top: '0', background: 'white', fontWeight: 'bold' }) $('div.details table tr:eq(2)').css({ position: 'sticky', top: '28px', background: 'white', fontWeight: 'bold' }) })();