Speeds up page loading: on video-hosting sites, priority is given to the main video; on other sites, priority is given to visible content.
если скажите мне на каком сайте, я смогу проверить, но в скрипте есть массив специально для исключения блокировок TRACKER_EXCEPTIONS и туда уже входят ряд capch, например: Cloudflare Challenge / Turnstile/ В v.3.2.3 я добавил туда еще и capch - Google reCAPTCHA, hCaptcha, если не поможет сообщите мне название проблемного сайта
You can test reCAPTCHA here: https://google.com/recaptcha/api2/demo
The 3.2.3 update hasen't fixed the bug yet.
Edit: GreasyFork doesn't seem to allow links in comments. You can search for "ReCAPTCHA demo" on Google
да увидел баг, я добавлял в исключения в TRACKER_EXCEPTION 'recaptcha.google.com', а Google использует для reCAPTCHA google.com/recaptcha поэтому в следующей версии нужно заменить функцию isException на этот код:
const isException = url => {
try {
const u = new URL(url, location.origin);
const host = u.hostname;
if (TRACKER_EXCEPTIONS.has(host)) return true;
// Дополнительное исключение для reCAPTCHA на google.com
if (host === 'google.com' && u.pathname.startsWith('/recaptcha/')) return true;
return false;
} catch { return false; }
};
P.S: Моежете попробовать заменить сами, у меня заработало, но новую версию с заменой я сделаю позже...
The script seems to have broken recaptcha in the latest update.