I’ve scripted it to append a string to the URL and when I keep issuing the request it keeps appending over and over again
In OnBeforeRequest function
if (oSession.uriContains("www.youtube.com/results?search_query=")) {
var sText = "+test1+test2+test3";
oSession.fullUrl = oSession.fullUrl + sText;
}
visual info: http://imgur.com/oRp24Ux,RvxtQTO,LniAECS#0
How can I fix this ?