how to use yes no statement with alert in tampermonke code example
Example: how to use yes no statement with alert in tampermonkey
var proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
alert("You proceed!")
} else {
alert("You didnt proceed!")
}