how can I force automatic filling to be enabled on webpages?

17

2

I'm using the Chrome Browser. I enjoy the "automatic filling" that it uses to fill in things like my address when I'm shopping online.

Sometimes I get a message that says:

"This webpage has disabled automatic filling for this form"

Is there a way that I can tell Chrome to ignore what the webpage wants and just give me what I want?

I'm not talking about passwords, I'm talking about Chrome's automatic filling in of things like my email address, zip code, etc.

For Example: https://www.kansas.gov/ump/register/account?

thepaulpage

Posted 2012-12-06T05:42:24.833

Reputation: 1 460

I found this on StackOverflow. I'm not sure if it'll help much, but it'll clear some things out...

– xpy – 2013-07-01T10:02:01.063

3+1 for "ignore what the webpage wants and just give me what I want". Could not have said it better myself. – Miky Dinescu – 2013-09-15T17:22:58.697

Answers

8

Inherently there is no option to "auto-enable" completion even if a web page has disabled it. The web page disables it using the property autocomplete=off in an element. There is a chrome extension: Auto-Complete = On

You can use that to turn on auto-complete for the elements that are disabled.

Anand

Posted 2012-12-06T05:42:24.833

Reputation: 181

I think that extension was removed? – Aquarius Power – 2015-01-06T15:24:22.560

A new one here; Force Autocomplete

– Abdessamad Idrissi – 2015-02-24T22:02:39.307

I figured that I'd probably need an extension to accomplish what I wanted. I'll have to do some testing to see if this extension works. – thepaulpage – 2012-12-06T16:19:36.337

This isn't what I want. I edited my question to make it more obvious – thepaulpage – 2013-04-15T15:15:39.727

4The Autocomplete = on extension works sometimes but not always, so you may still need to use Inspect Element to edit the form property, as @curiousguy explains. Just beware, one reason people use this tag is because their crappy Javascript validation code can't correctly handle autofill. – Trevor Robinson – 2013-09-24T19:00:37.707

2

If you do not want to install an extension:

You can right click on the form, select Inspect Element and edit the auto-complete attribute of the <form> element directly: change autocomplete="off" to autocomplete="".

curiousguy

Posted 2012-12-06T05:42:24.833

Reputation: 345

1have to do this several times in order to bypass all of the fields. It would be easier to just type in my name/address/city/state/zip – thepaulpage – 2015-01-27T16:50:45.290

It would be easier but less pretty. – curiousguy – 2015-01-27T17:44:08.927

1

Also your form must submit via POST. If you're submitting via ajax, do <form autocomplete="on" method="post">, omitting the action attribute.

garageàtrois

Posted 2012-12-06T05:42:24.833

Reputation: 151