I want to change the script using greasemonkey. But that will not work. Please, help;
original script
<script>
function abc(){
}
abc();
window.onload = abc;
.....
.....
</script>
Now I want to change the abc function as my requirement. I tried the following path but did not help.
unsafeWindow.abc= function () {
}
source
share