5 ms·
If you want to skip to December 31st, you can enter the following into your browser console to make all the tiles/doors openable: const elements = document.q
by kayge 10mo ago
If you want to skip to December 31st, you can enter the following into your browser console to make all the tiles/doors openable:
const elements = document.querySelectorAll(".countdown-calendar__door");
elements.forEach(element => {
element.classList.add("will-open");
});