Recaptcha clicker

Clicks on the button

安装此脚本
作者推荐脚本

您可能也喜欢Adfly-skipper

安装此脚本
  1. // ==UserScript==
  2. // @name Recaptcha clicker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Clicks on the button
  6. // @author giuseppe-dandrea
  7. // @match http*://www.google.com/recaptcha/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. setTimeout(function() { document.getElementsByClassName("recaptcha-checkbox-checkmark")[0].click(); }, 1000);
  14. })();