您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
5/30/2023, 7:56:47 PM
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.gf.qytechs.cn/scripts/467532/1198876/Sales%20history%20sorter%20-%20hcpaoorg.js
// ==UserScript== // @name Sales history sorter - hcpao.org // @namespace Violentmonkey Scripts // @match *://*.hcpao.org/Search/Parcel/* // @include *://hcpao.org/Search/Parcel/* // @grant none // @version 1.3 // @author Ryan McLean // @description 5/30/2023, 7:56:47 PM // @license MIT // ==/UserScript== const salesHistoryTable = $("h3:contains('Sales History')").next().first('table').find('tbody'); const salesHistoryRows = salesHistoryTable.find("tr"); const extractBookPageValue = (tableRow) => Number($(tableRow).find("td:eq(0):first-child").text() + $(tableRow).find("td:eq(1):first-child").text()); const SortByBookPageDesc = (a, b) => { var a_value = extractBookPageValue(a); var b_value = extractBookPageValue(b); if (a_value > b_value) return -1; else if (a_value < b_value) return 1; else return 0; } salesHistoryRows.sort(SortByBookPageDesc).appendTo(salesHistoryTable);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址