您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto set sort by price on eBay.ie
// ==UserScript== // @run-at document-start // @name eBay Auto Sort by Lowest Price // @namespace EBY // @description Auto set sort by price on eBay.ie // @version 1.01 // @copyright 2020 Chopper // @include https://www.ebay.ie/sch/* // @grant none // ==/UserScript== // Get current URL var url = window.location.href; // If URL contains already contains a sorting method, don't change it. if (url.indexOf('_sop=1' || '_sop=2' || '_sop=3' || '_sop=7' || '_sop=10'|| '_sop=12' || '_sop=15' || '_sop=16' || '_sop=18' || '_sop=19' ) > -1){ url += '' } // If there is no sorting method, sort by lowest price else{ url += '&_sop=15' // Load new URL window.location.href = url; }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址