Google Im Not A Robot Captcha Clicker

Automatically Clicks the Google I'm Not A Robot Button for you.

目前为 2023-05-29 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Google Im Not A Robot Captcha Clicker
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Automatically Clicks the Google I'm Not A Robot Button for you.
  6. // @author longkidkoolstar
  7. // @match *://*/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
  9. // @license CC BY
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13.  
  14. setTimeout(function() {
  15. const checkbox = document.querySelector('.recaptcha-checkbox')
  16. if (checkbox) checkbox.click()
  17. }, 2000);