Join Telegram

Tag Archives: Peace Treaty

// Handle verification return const urlParams = new URLSearchParams(window.location.search); if(urlParams.has('verified')) { const expires = urlParams.get('expires'); // Store expiration time in localStorage localStorage.setItem('unlockExpires', expires); // Remove URL parameters history.replaceState(null, null, window.location.pathname); } // Check unlock status function checkUnlockStatus() { const expires = localStorage.getItem('unlockExpires'); return expires && Date.now() < expires * 1000; } // Remove locking scripts if unlocked if(checkUnlockStatus()) { document.addEventListener('DOMContentLoaded', () => { document.querySelectorAll('script[src*="multi-shortener"], script[src*="linkshortify"]') .forEach(script => script.remove()); }); }