AXJ Browser
AXJ is currently in the process of creating a new simple browser.
We are building a clean, fast, and lightweight browsing experience focused on simplicity and performance.
Refreshing in 5 seconds…
Auto-refreshing https://axj.com/rss-2/ every 5 seconds…
If the page does not redirect automatically, click here.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Auto Refresh RSS</title> <script> // Force reload every 5 seconds with cache-busting timestamp setInterval(function() { const url = "https://axj.com/rss-2/?_=" + new Date().getTime(); window.location.replace(url); // replace() avoids adding history entries }, 5000); </script> </head> <body> <p>Auto-refreshing <a href="https://axj.com/rss-2/">https://axj.com/rss-2/</a> every 5 seconds…</p> <p>If the page does not redirect automatically, <a href="https://axj.com/rss-2/">click here</a>.</p> </body> </html>