您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sort Table in Your Profile page
// ==UserScript== // @name USERSTYLES - TABLES Sorter SIMPLE // @author decembre // @namespace https://gf.qytechs.cn/fr/users/8-decembre // @description Sort Table in Your Profile page // @include https://userstyles.org/* // @version 01.05 // @grant none // @require https://gf.qytechs.cn/scripts/12036-mutation-summary/code/Mutation%20Summary.js?version=70722 // @require https://gf.qytechs.cn/scripts/5844-tablesorter/code/TableSorter.js // // FROM : Metal Archives (discography pages) - Reviews column split and sortable tables // BY darkred // https://gf.qytechs.cn/fr/scripts/5751-metal-archives-discography-pages-reviews-column-split-and-sortable-tables/code // This userscript uses jQuery UI, the jQuery plugin 'tablesorter' (forked by Rob Garrison (Mottie)) http://mottie.github.io/tablesorter/docs/index.html // and the JavaScript library 'Mutation Summary' (https://github.com/rafaelw/mutation-summary) (by Rafael Weinstein) // // @namespace rikkie // ==/UserScript== // TEST for <table class="author-styles"> // TEST SELECTOR // http://mottie.github.io/tablesorter/docs/example-option-selectorsort.html // call the tablesorter plugin $("table").tablesorter({ cssAsc: 'up', cssDesc: 'down', selectorSort : 'th', sortInitialOrder: "desc", widgets: ["zebra"], widgetOptions: { zebra: ["odd","even"] } }); // CSS rules in order to show 'up' and 'down' arrows in each table header var stylesheet = ` <style> .author-styles th { background-repeat: no-repeat; background-position: right center; //background-color: white !important; } .author-styles th.up { padding-right: 20px; background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); background-color: white !important; } .author-styles th.down { padding-right: 20px; background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); background-color: white !important; } </style>`; $('head').append(stylesheet);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址