Created
June 11, 2015 11:53
-
-
Save taoufix/424cc0891fb2d51289ce to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// ==UserScript== | |
// @name Autocomplete ON | |
// @namespace http://taoufix.com/autocomplete-on | |
// @description Set Autocomplete on on password fields | |
// @include * | |
// @version 1 | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
// @grant none | |
// ==/UserScript== | |
$("input[type='password']").removeAttr("autocomplete"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment