您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
it renames the label "I'm a human" or the label "are you a human" to "do you support palestine" as a protest for human rights, it doesn't effect the verification
// ==UserScript== // @name Do You Support Palestine Captcha rename // @namespace https://tampermonkey.net/ // @version 1.0 // @description it renames the label "I'm a human" or the label "are you a human" to "do you support palestine" as a protest for human rights, it doesn't effect the verification // @author A.Ines Douaa // @icon // @match https://*.hcaptcha.com/*hcaptcha-challenge* // @match https://*.hcaptcha.com/*checkbox* // @match https://*.hcaptcha.com/*captcha* // @match *://*/recaptcha/* // @grant none // @license MIT // ==/UserScript== // This code was writen by H.Mohamed and is owned by A.Ines Douaa // H.Mohamed instagram: https://www.instagram.com/h.mohamed.dev/ // A.Ines Douaa instagram: https://www.instagram.com/luuv.___.me.____/ (function () { "use strict"; function qSelector(selector) { return document.querySelector(selector); } function isHidden(el) { return el.offsetParent === null; } // For reCaptcha var label = "#recaptcha-anchor-label"; if (window.location.href.includes("")) { var labelInterval = setInterval(function () { if (!qSelector(label)) { } else if (!isHidden(qSelector(label))) { qSelector(label).innerText = "Do you support Palestine 🍉?"; } else { return; } }, 500); } // For hCaptcha var hCaptchalabel = "#label"; if (window.location.href.includes("checkbox")) { var hCaptchalabelInterval = setInterval(function () { if (!qSelector(hCaptchalabel)) { } else if (!isHidden(qSelector(hCaptchalabel))) { qSelector(hCaptchalabel).innerText = "Do you support Palestine 🍉?"; } else { return; } }, 500); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址