This is a mere feature request, so very low priority. Thank you already for providing this great service for free!
I find that having to interact with the button massively decreases the chances of me submitting anything, even though I would really want to. I found that making it auto-open helps a lot.
Currently, I'm using an userscript for this purpose, but I think having an actual option would be very useful.
(function() {
'use strict';
let ci = setInterval(()=>{
if(!!document.getElementById("cbSubmitMenu")){
clearInterval(ci);
}else{
document.querySelector('.cbSubmitButton.cbButton.cbTitleButton').click();
}
}, 500);
})();
I may open a pull at some point, but I haven't read the codebase yet. Thanks again.
This is a mere feature request, so very low priority. Thank you already for providing this great service for free!
I find that having to interact with the button massively decreases the chances of me submitting anything, even though I would really want to. I found that making it auto-open helps a lot.
Currently, I'm using an userscript for this purpose, but I think having an actual option would be very useful.
I may open a pull at some point, but I haven't read the codebase yet. Thanks again.