Automatic Clicker for reCAPTCHA of URL Shortener

This script is not resolver, only can click.

  1. // ==UserScript==
  2. // @name Automatic Clicker for reCAPTCHA of URL Shortener
  3. // @name:ja shink.inとかのreCAPTCHAを自動クリック
  4. // @namespace http://hogehoge/
  5. // @version 1.15
  6. // @description This script is not resolver, only can click.
  7. // @description:ja 画像認識を自動処理するものではありません。使用は自己責任で。
  8. // @author H. Amami
  9. // @match *://www.google.com/recaptcha/api2/anchor?*
  10. // @grant none
  11. // @run-at document-end
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. var check = function(ref) {
  17. //You can add domain(s) if you want.
  18. var domains = [
  19. "fas.li", "ouo.io", "ouo.press", "shink.in", "al.ly", "coinlink.co", "uploadbank.com", "croco.site", "urlst.me",
  20. "cpmlink.net", "ally.sh", "elde.me", "cut-urls.com", "linkfly.gaosmedia.com", "uskip.me", "adshorte.com", "u2s.io", "urle.co", "tmearn.com",
  21. "clik.pw"
  22. ];
  23. for (var domain of domains) {
  24. if (~ref.indexOf(domain)) return true;
  25. }
  26. return false;
  27. };
  28. if (check(document.referrer.split("/")[2])) {
  29. var hoge = function() {
  30. document.getElementById("recaptcha-anchor").click();
  31. };
  32. setTimeout(hoge, 0);
  33. console.info("Automatic click of reCAPTCHA has been executed");
  34. }
  35. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址