CommentButtonText.js

function changeCommentButtonText(){
	console.log('scriptydo');
	const btnList = document.querySelectorAll('.tlf_task_content button[type="submit"]');
	for (const btn of btnList){
		if (btn.innerText.trim().toUpperCase()=='SAVE'){
			btn.innerText = 'Add Comment';
		}
	}
}
setTimeout(changeCommentButtonText,250);