Comment by kayge
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");
});