Discussions » Creation Requests

Script to append "&_blrs=recall_filtering" to eBay searches

§
Posted: 2025-08-12

When filtering eBay searches by Lowest Price + Shipping, eBay will often hide the lowest priced item(s) far down the page under "Results Matching Fewer Words" even if the words match your search exactly. I need a script that appends "&_blrs=recall_filtering" to the end of eBay searches. Adding this disables eBay's broken filters.

§
Posted: 2025-08-12
Edited: 2025-08-12

I made this, but can't figure out how to get the script to run on ebay.com. I enabled the script in Tampermonkey, but it still says "No script is running"

// ==UserScript==
// @name Disable eBay Filters
// @namespace http://www.ebay.com
// @version 2025-08-12
// @description try to take over the world!
// @author You
// @match https://www.ebay.com/sch
// @icon https://www.google.com/s2/favicons?sz=64&domain=ebay.com
// @grant none
// ==/UserScript==

(function() {
'use strict';

const eBaySearchUrls = ['https://www.ebay.com/sch']
const blrs = '&_blrs=recall_filtering';
if (eBaySearchUrls.some(substr => window.location.href.startsWith(substr)) && !window.location.href.includes(blrs)) {
console.log(`adding ${blrs}`);
window.location.replace(`${window.location.href}${blrs}`)
}
});

§
Posted: 2025-08-13

OK, I've got this to run, but it doesn't seem to be working as intended.

// ==UserScript==
// @name Disable eBay Filters
// @namespace https://www.ebay.com
// @version 2025-08-12
// @description try to take over the world!
// @author You
// @match https://www.ebay.com/sch/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=ebay.com
// @grant none
// ==/UserScript==

(function() {
'use strict';

const eBaySearchUrls = ['https://www.ebay.com/sch']
const blrs = '&_blrs=recall_filtering';
if (eBaySearchUrls.some(substr => window.location.href.startsWith(substr)) && !window.location.href.includes(blrs)) {
console.log(`adding ${blrs}`);
window.location.replace(`${window.location.href}${blrs}`)
}
})();

§
Posted: 2025-08-13
Edited: 2025-08-13

Scripts similar to https://greasyforks.org/scripts/25286 might do what you need: append the parameter; and even if already there, change it to what you specifically want.

Post reply

Sign in to post a reply.

长期地址
遇到问题?请前往 GitHub 提 Issues。