Skip to content

You can click buttons on websites with this code

License

Notifications You must be signed in to change notification settings

coinsquest/Auto-Clicker-Script

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Auto Clicker Script

You can click buttons on websites with this code

Usage

  1. You must edit code for target button. (See the configuration below)
  2. Go to taget website and press F12 (open Console)
  3. Paste the code and set click times (change '[CLICK TIMES]' to '1000' or want do you want)
  4. Press enter and wait

Configuration

jQuery('.[BUTTON CLASS]').each(function(index, value) { setTimeout(function() { jQuery(value).trigger('click'); }, index * [CLICK TIMES]); });

You should configure code like this

jQuery('.btn-small').each(function(index, value) { setTimeout(function() { jQuery(value).trigger('click'); }, index * 5000); });

Credits

Hasan CAN - https://hasan.im

About

You can click buttons on websites with this code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%