أهلا بك،
يمكن أن نفعل ذلك من خلال الخاصية onLoad بوضعها لعنصر body و اسنادها لدالة JS بسيطة جدا... فهنا عند كل تحميل للصفحة أو تحديث ستجد نفسك بنهايتها
<html>
<body onLoad="pageScroll()">
<div style="margin-top:80%">
Some big text
Some big text
</div>
</body>
<script>
function pageScroll() {
window.scrollBy(0,50); // horizontal and vertical scroll increments
scrolldelay = setTimeout(pageScroll(),0); // scrolls that let the page up agin
//scrolldelay = setTimeout(pageScroll(),100); // scrolls every 100 milliseconds if u want
}
</script>
<html>