Article updated for v2.0.1.
Sometimes you want to do something special in the app, change a default behavior or do something automatically for example. To accomplish this, we provide an option where you can write JavaScript code.
By going to the app settings, in the "Advance section, you can find a field where you can place it. The same happens with CSS code, specially used to change the user interface of the app.
For instance, some users want to reload the app every X time because the app they are using get disconnected by inactivity. Here's an example, to Auto-Refresh every 10 minutes.
setInterval(() => location.reload(), 600000);