Chrome ERR_BLOCKED_BY_XSS_AUDITOR solution 2018-01-31 04:02

When I POST some xml data to server by using chrome I got the error message like following.

This page isn’t working
Chrome detected unusual code on this page and blocked it to protect your personal information (for example, passwords, phone numbers and credit cards).
Try visiting the site's homepage.
ERR_BLOCKED_BY_XSS_AUDITOR

When I POST some text data the error message is missing. After googleing I add -disable-xss-auditor parameter to Chrome shortcut. The full target line like following.

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -disable-xss-auditor

When I POST xml data again the error message disappear.

EOF