Created
April 10, 2023 23:22
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
@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