Skip to main content
Living the JJK Dream
Living the JJK Dream
Living the JJK Dream
  • Home
  • Character Deep Dives
  • The Lives of the JJK Island
  • DISCLAIMER

This blog is not affiliated with Nintendo, Tomodachi life, or the Jujutsu Kaisen properties.

 

© 2026 Living the JJK Dream
const FEED_URL = "https://rss.app/feeds/3dsNmH2v2EaowIal.xml"; fetch(FEED_URL) .then(response => response.text()) .then(xmlText => { const parser = new DOMParser(); const xml = parser.parseFromString(xmlText, "text/xml"); const latestItem = xml.querySelector("item"); if (!latestItem) return; const title = latestItem.querySelector("title").textContent; const link = latestItem.querySelector("link").textContent; const dismissedPost = localStorage.getItem("jjk-dismissed-post"); if (dismissedPost === link) return; const banner = document.createElement("div"); banner.innerHTML = "🚨 NEW ISLAND BROADCAST: " + title + " 🚨"; banner.style.cssText = ` position:fixed; top:0; left:0; width:100%; background:#7b1113; color:white; padding:12px; text-align:center; font-weight:bold; z-index:999999; cursor:pointer; box-shadow:0 2px 8px rgba(0,0,0,.4); `; banner.onclick = () => { localStorage.setItem("jjk-dismissed-post", link); window.location.href = link; }; document.body.prepend(banner); });