From 28d34235bd4ff988e64287a339f641b272efcec8 Mon Sep 17 00:00:00 2001 From: Alexander BC <1+alexbcberio@noreply.alexbcberio.com> Date: Fri, 24 Jul 2026 11:24:49 +0200 Subject: [PATCH] chore: disable reward.bing.com script The rewards site layout has changed and the current implementation does not work --- bing-rewarder/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bing-rewarder/index.js b/bing-rewarder/index.js index ac0b1d1..00b060f 100644 --- a/bing-rewarder/index.js +++ b/bing-rewarder/index.js @@ -3,7 +3,7 @@ // @namespace bing // @description Utilities to semiautomate Bing reward point redemption // @include https://www.bing.com/* -// @match https://rewards.bing.com/ +/* @match https://rewards.bing.com/ */ // @version 1.6.2 // @updateURL https://git.alexbcberio.com/alexbcberio/userscripts/raw/branch/main/bing-rewarder/index.js // @downloadURL https://git.alexbcberio.com/alexbcberio/userscripts/raw/branch/main/bing-rewarder/index.js @@ -13,7 +13,7 @@ (function() { switch (location.host) { case "rewards.bing.com": - bingRewards(); + //bingRewards(); break; case "bing.com": case "www.bing.com": @@ -58,7 +58,7 @@ GM.registerMenuCommand("Start searching", doSearch); const urlSearchParams = new URLSearchParams(location.search); - const maxSearch = 30; + const maxSearch = 20; const wordMinLength = 4; const wordMaxLength = 10; const minWaitSecondsToSearch = 5;