arie_cristianD

refresh homepage everu 15 minutes

Nov 23rd, 2025
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function () {
  2.     const HOMEPAGE_URL = "/"; // your homepage path name
  3.     if (window.location.pathname === HOMEPAGE_URL) {
  4.         setInterval(() => {
  5.             window.location.reload();
  6.         }, 15 * 60 * 1000); // 15 minutes
  7.     }
  8. })();
  9.  
Advertisement
Add Comment
Please, Sign In to add comment