Figured it out kinda. Works for all versions of the game, Load a save, this is important so that the bust stay unlocked between sessions. offline and steam version do CTRL+SHFT+I, web browser version hit F12. Go to console, and paste:
Options.systemOptions.cgs = cgs.map(str => {
str = str.replace(/.*?CG\//, '');
str = str.replace(/\.png/, '');
return str;
});
Options.systemOptions.busts = charImages.filter(x => x.includes('fulls/')).map(str => {
str = str.replace(/.*?fulls\//, '');
str = str.replace(/\..*/, '');
return str;
});
All CG's and Bust variations should be unlocked.
Credit goes to an old thread by Mad Dog relatively recently necroed
Is there a command to unlock all CGs and Busts?