The simple way for bypass this error in developing is send header to browser
Put the header before send data to browser.
In php
you can send this header for bypass this error ,send header reference:
header('X-XSS-Protection:0');
In the ASP.net
you can send this header and send header reference:
HttpContext.Response.AddHeader("X-XSS-Protection","0");
or
HttpContext.Current.Response.AddHeader("X-XSS-Protection","0");
In the nodejs
send header, send header reference :
res.writeHead(200, {'X-XSS-Protection':0 });
// or express js
res.set('X-XSS-Protection', 0);