How to Setup the UserScript - Farigh/pokeclicker-automation GitHub Wiki
:large_orange_diamond: Loading a UserScript automatically
A UserScript can be automatically loaded on a set page.
There are various browser extension that can be used to load such script,
the most popular one being TamperMonkey:
:large_orange_diamond: The Automation-UserScript.js script
The Automation-UserScript.js file is automatically loading the most recent version of the script collection.
This script is configured to run automatically on https://www.pokeclicker.com
If you do not want the latest update, the releaseLabel
value can be set to either a tag or a commit sha1.
:large_blue_diamond: Configure default behaviour
Some features are enabled by default.
This behaviour can be modified by changing the var disableFeaturesByDefault = false;
value to var disableFeaturesByDefault = true;
, which will disable every features by default.
Some features' settings are enabled by default as well.
This behaviour can be modified by changing the var disableSettingsByDefault = false;
value to var disableSettingsByDefault = true;
, which will disable every feature's settings by default.