Here is a script that will open Toggle blocks by default in Super.
Add this code to the Body section of global code or on the Body section of the page on which you wish this to run.
<script>
if(document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded',opentoggles);
}
else {
opentoggles();
}
function opentoggles() {
const detailsElements = document.querySelectorAll(".notion-toggle");
detailsElements.forEach(function(item) {
item.setAttribute("class", "notion-toggle open");;
});
}
</script>