Greasy Fork is available in English.

Google Im Not A Robot Captcha Clicker

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

Pasang skrip ini?
Sugesti pemilik skrip

Kamu mungkin juga suka Goku/AniWatch Auto Sign.

Pasang skrip ini
  1. // ==UserScript==
  2. // @name Google Im Not A Robot Captcha Clicker
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.01
  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. }, 1750);