B&Q/diy.com actually show stuff in store

Auto-apply a filter to show items actually in stock and not "Verified seller" rubbish

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         B&Q/diy.com actually show stuff in store
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Auto-apply a filter to show items actually in stock and not "Verified seller" rubbish
// @author       You
// @match        https://www.diy.com/*.cat*
// @match        https://www.diy.com/search*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Define the filter key and value
    const filterKey = "1 hour Click & Collect and Home Delivery options";
    const filterValue = "1 hour Click & Collect";

    // Get the current URL
    let url = new URL(window.location.href);

    // Check if the filter is already applied
    if (url.searchParams.get(filterKey) !== filterValue) {
        // Add or update the filter parameter
        url.searchParams.set(filterKey, filterValue);

        // Replace the current URL and force reload
        window.location.href = url.href;
    }
})();