Text Captcha Alert

Alerts when a captcha is encountered.

  1. // ==UserScript==
  2. // @name Text Captcha Alert
  3. // @namespace No-one
  4. // @author DCI
  5. // @version 0.1
  6. // @description Alerts when a captcha is encountered.
  7. // @include https://www.mturk.com/mturk/accept*
  8. // @include https://www.mturk.com/mturk/continue*
  9. // @include https://www.mturk.com/mturk/preview*
  10. // @include https://www.mturk.com/mturk/return*
  11. // @require http://code.jquery.com/jquery-latest.min.js
  12. // ==/UserScript==
  13.  
  14.  
  15. if ($('input[name="userCaptchaResponse"]').length > 0) {
  16. alert("Captcha");}