By comment from @Wallace Maxters, I discovered that nowhere exactly says how to disable this Pop-UP
(correct) , but there are means of cheat this.
Why does this happen?
Whenever a form with <input type="password">
is sent the Chrome
will ask the Pop-UP
question.
And what is the solution to this?
Add 2 fake fields next to your password field.
<input type="password" class="stealthy" tabindex="-1">
<input type="password" " id="user_password" autocomplete="off">
<input type="password" class="stealthy" tabindex="-1">
And use the following CSS
.stealthy {
left: 0;
margin: 0;
max-height: 1px;
max-width: 1px;
opacity: 0;
outline: none;
overflow: hidden;
pointer-events: none;
position: absolute;
top: 0;
z-index: -1;
}
The reason for class CSS
is make fields invisible and declassified.