Created
November 20, 2013 05:28
-
-
Save atommarvel/7558195 to your computer and use it in GitHub Desktop.
Simply re-enables chrome's ability to autocomplete the login form for logging into tsquare,buzzport,degeeworks, etc
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 Auto GT Login | |
// @namespace http://www.atommarvel.com | |
// @version 1.0 | |
// @description Simply re-enables chrome's ability to autocomplete the login form for logging into tsquare,buzzport,degeeworks, etc | |
// @match https://login.gatech.edu/* | |
// @copyright 2012+, Atom Marvel Raiff | |
// ==/UserScript== | |
document.getElementById("username").removeAttribute("autocomplete"); | |
document.getElementById("password").removeAttribute("autocomplete"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment