ESPEasy for esp boards

I finally found the firmware of my dreams for esp8266/esp32:
https://td-er.nl/ESPEasy/
I just chose Normal 4M for esp8266 from the list and flashed it.
Access point: ESP-easy
Password: configesp
Control: 192.168.4.1
Then click Rules and insert:

on WiFi#Connected do
timerSet,1,60
endon

on Rules#Timer=1 do
SendToHTTP https://example.com/url1
SendToHTTP https://example.net/url2
timerSet,1,60
endon

and voila!
Now click Tools -> Log and wait for requests.

729064: WD : Uptime 12 ConnectFailures 0 FreeMem 19896 WiFiStatus: WL_CONNECTED 3 ESPeasy internal wifi status: Conn. IP Init
732673: EVENT: Rules#Timer=1,1
732680: ACT : SendToHTTP https://example.com/
732792: ACT : SendToHTTP https://example.net/
732923: ACT : timerSet,1,60
732929: EVENT: http#example.com=200
732934: EVENT: http#example.net=200

If you see 301 in the logs – run curl and look at the final url and fix it.
Beautiful.