How to Delete from Browser Auto-Complete History (Chrome / Brave)
Published 2022-1-13How to Delete from Browser Auto-Complete History (Chrome / Brave)
Hover over the entry you'd like to delete, hold shift, and hit the delete key!
Sometimes Browser auto-complete is a little too aggressive and it starts saving stuff that you don't want it to save in the autocomplete list for form fields on various websites - things like tokens, birthday gifts, etc.
So here's what you do:
- Click in the field with the autocompletes (so that the list shows up)
- Hover over the offending list item
- Hit Shift + Delete
Boom! That's it.
At the very least this works in Brave (Chrome), but I suspect it's probably a common convention that works in Safari, Firefox, etc as well.
Also, if you're a developer and you don't want the browser to save inputs for a particular field:
<form autocomplete="nope">
<input type="text" autocomplete="nope" />
</form>
Possible values you might want to use are:
nope
: https://www.scotsscripts.com/blog/html-css-trick-how-to-turn-off-auto-complete.htmlnew-password
: https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletionoff
: ... because that's what seems to be what should work most of the time
By AJ ONeal
Thanks!
It's really motivating to know that people like you are benefiting
from what I'm doing and want more of it. :)
Did I make your day?
Buy me a coffee
(you can learn about the bigger picture I'm working towards on my patreon page )