find the mod on sprunkin or another sprunki website
(eg sprunksomnia)
wait for it to laod
then go to inspect element, find the source which is wowtbc.net/insertwebnamehere/insertmodname here, then paste go to console in inspect element on THAT source website
then paste this into the console:
vm.saveProjectSb3().then(blob => {
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'project.sb3';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
});
yw if this helped