Hi @sss333
I'm totally agree with @OOlashyn answer. There is no possible way to refresh entity list using JS or any Settings.
However, you can trigger the Ascending/Descending Table Header and refresh the Entity List.
Go to your entity list --> Options tab --> Add below code in Custom JavaScript textbox.
This will refresh the entity list every 10 seconds based on Asc/Desc of first field of Entity List.
$(document).ready(function() {
setInterval(function(){
$(".view-grid th:first a:first").trigger("click");
}, 10000);
});
--------------------------
If you like this post, give a Thumbs up. Where it solved your query, Mark as a Solution so it can help other people!