No, [captcha provider] this one IS a bot

Silly little UserStyle to replace the text in captchas with "I'm a robot". Will be updated over time.


/* ==UserStyle==
@name           no, recaptcha this one IS a bot
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    beep
@author         6B74-4
==/UserStyle== */
    
@-moz-document regexp(".*") {
  #recaptcha-anchor-label, /*recaptcha*/
  div[aria-label = "Automatic anti-robot verification widget"] p span /*friendlycaptcha*/
  {
    line-height: 0;
    color:transparent;
    &::after {
      display: block;
      line-height: initial;
      color: initial;
      content: "I'm a robot";
    }
  }
}