To have the “Minor Changes” checkbox enabled by default, put the following in your conf/userscript.js (create it if it does not exist):
addInitEvent(function(){ var cbox = $('minoredit'); if(!cbox) return; var prv = getElementsByClass('preview',document,'div'); if(prv[0]) return; //preview is shown, do not modify state cbox.checked = true; });