Skip to content

Instantly share code, notes, and snippets.

@e-t-l
Created April 10, 2023 23:22
Show Gist options
  • Save e-t-l/443a88820bad69c0f82691fecdfd02a4 to your computer and use it in GitHub Desktop.
Save e-t-l/443a88820bad69c0f82691fecdfd02a4 to your computer and use it in GitHub Desktop.
Prevents Google Chrome (and maybe other browsers) from scraping your passwords and sending it to their "spellcheck" servers
/*
@name Keep-Passwords-Private
@namespace e-t-l
@homepage https://gist.github.com/e-t-l/443a88820bad69c0f82691fecdfd02a4
@match *://*/*
@version 1.0
@author e-t-l
@license CC0-1.0
*/
/*
==UserStyle==
@name Keep-Passwords-Private
@namespace e-t-l
@homepage https://gist.github.com/e-t-l/443a88820bad69c0f82691fecdfd02a4
@match *://*/*
@version 1.0
@author e-t-l
@license CC0-1.0
==/UserStyle==
*/
input[type="password"] {
spellcheck: false !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment