Last active
April 1, 2022 09:42
-
-
Save jae1911/0b74f6f06085a1121f0c84ce398f7e0d to your computer and use it in GitHub Desktop.
Unhuman Recaptcha
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Unhuman recaptcha | |
// @namespace http://jae.fi/ | |
// @version 0.1 | |
// @description No humans allowed! | |
// @author Jae Lo Presti | |
// @match *://*/* | |
// ==/UserScript== | |
(async function() { | |
document.getElementById('recaptcha-anchor-label').innerHTML = 'Is fox! 🦊'; | |
})() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Unhuman recaptcha | |
// @namespace http://jae.fi/ | |
// @version 0.1 | |
// @description No humans allowed! | |
// @author Jae Lo Presti | |
// @match *://*/* | |
// ==/UserScript== | |
(async function() { | |
document.getElementById('recaptcha-anchor-label').innerHTML = 'Not human!'; | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment