Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Google Chrome Autocomplete / Autofill / Suggestion [duplicate]

I want to disable google chrome autocomplete / autofill / use password suggestion
Something similar with autocomplete="off" (this one is not working).

The code is as following

loginpage.php

<form class="form-method" method="post">
    <span class="form-fill">
      <text>Username</text>
      <input placeholder="Username" required/>
      <text>Password</text>
      <input type="password" placeholder="Password" required/>
      <button type="submit"></button>
    </span>
</form>

anotherform.php

<form method="REQUEST" class="vp-method">
    <input type="password" maxlength="4" autocomplete="JUST STOP!"/>
    <button type="submit" placeholder="DVN Number">Validate</button>
</form>


How to disable this google chrome autocomplete / suggestion / autofill WITHOUT using javascript?

Note : I'm aware of duplicating question. And none of those suggestion is working (as I'm typing right now).

Thank you :)

like image 270
Satrio Wibowo Avatar asked May 04 '17 13:05

Satrio Wibowo


Video Answer


1 Answers

Chrome no longer supports autocomplete="off". Use autocomplete="new-password"instead.
Mozilla link

From the documentation:

For this reason, many modern browsers do not support autocomplete="off" for login fields:

If a site sets autocomplete="off" for username and password input fields, then the browser will still offer to remember this login, and if the user agrees, the browser will autofill those fields the next time the user visits the page. This is the behavior in Firefox (since version 38), Google Chrome (since 34), and Internet Explorer (since version 11).

If an author would like to prevent the autofilling of password fields in user management pages where a user can specify a new password for someone other than themself, autocomplete="new-password" should be specified, though support for this has not been implemented in all browsers yet.

Another solution is using autocomplete="false". Here are a few links to other SO questions that may help:

SO - Disabling Chrome Autofill

SO - Chrome Browser Ignoring AutoComplete=Off

SO - Chrome 63+ Autocomplete Bypass

like image 164
Ethilium Avatar answered Sep 17 '22 12:09

Ethilium