Anonymous ID: edbe65 May 12, 2022, 8:43 p.m. No.16264927   🗄️.is 🔗kun

>>16264838,FOR LAGGING REPLY BUTTON- FIX IT HERE: (User JS)

 

window.fixtimer = 0;

setInterval(function() {

var o = document.getElementsByName('post');

var state = 0;

for(var k in o) {

if (typeof o[k].value == 'undefined') continue;

switch(o[k].value) {

case 'Reply':

state |= 1;

break;

case 'Posting… (100%)':

case 'Updating Thread…':

state |= 2;

}

}

if (window.fixtimer && !(state & 2)) {

console.log('timer disabled');

clearTimeout(window.fixtimer);

window.fixtimer = 0;

}

if (! window.fixtimer && (state & 2)) {

window.fixtimer = setTimeout(function() {

var o = document.getElementsByName('post');

for(var k in o) {

if (typeof o[k].value == 'undefined') continue;

o[k].value = 'Reply';

o[k].disabled = false;

}

},10000);

}

}, 1000);

Anonymous ID: edbe65 May 12, 2022, 8:59 p.m. No.16265007   🗄️.is 🔗kun

>>16264838

How to turn off REC button

 

Eureka, TY anon, been trying to figure this out since early this morning.

 

Literally paste this line of script into the Themes box:

 

#vrecorder { display:none !important; }