I am loading a webpage that is not mine, so I can't edit the source code. I want to change just one variable in one of it's script tags, that looks like this
<script>
preview=0;
test=0;
</script>
Now in the actual page there is more in between the tags, but that isn't what I'm asking for. I want to change just the test = 0;
line into test = 1;
before the rest of the page loads. How can I do this?